XCode 3 and javadoc
XCode 3 and javadoc
- Subject: XCode 3 and javadoc
- From: Nathaniel Trevivian <email@hidden>
- Date: Wed, 20 Aug 2008 11:15:23 +0100
I have configured a javadoc target in the ant build file, and set dependancies to "", but it never runs the javadoc command when I build my project using XCode.
If I manually run: ant javadoc from a terminal, it runs perfectly and generates the documentation. What am I doing wrong?
Here is my target tag from the build.xml file: <target name="javadoc" depends="" description="Create Javadoc for this project"> <mkdir dir="${docs}/javadoc/"/> <javadoc destdir="${docs}/javadoc/" packagenames="com.company.package1.*, com.company.package2.*" sourcepath="${src}" author="true" version="true" verbose="true" access="public" use="true"> </javadoc> </target>
${docs} is specified as: docs/ ${src} is specified as src/
I would much appreciate anyone's help here!
Thanks, Nathan |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden