diff options
author | Kenneth Russel <[email protected]> | 2006-04-17 21:26:27 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-04-17 21:26:27 +0000 |
commit | 8d22eb6dd6ab71501190fe2fbf8572708f79aff9 (patch) | |
tree | 179936cd03640e69bae794b5ffc96be96a1b4e9e /make/build.xml | |
parent | 76670b7c2d1dd4e455229fdf384e9cf99d949a1c (diff) |
Fixed Issue 212: Incorporate patch to add URL links to GL javadoc
Incorporated patch from user cylab on javagaming.org forums to
generate @native tags in GL javadoc which are postprocessed using a
taglet:
http://www.javagaming.org/forums/index.php?topic=12629.0
Modified supplied patch to restrict the @native designation to only
the function name, and to understand OpenGL data type-related suffixes
(i.e., glVertex -> glVertex3f).
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@723 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/make/build.xml b/make/build.xml index b515e93f3..d40fb0318 100644 --- a/make/build.xml +++ b/make/build.xml @@ -1048,7 +1048,9 @@ overview="${javadoc.overview}" source="1.4" linkoffline="${javadoc.link} 142-packages" - bottom="${javadoc.bottom}" /> + bottom="${javadoc.bottom}" > + <taglet name="net.highteq.nativetaglet.NativeTaglet" path="${gluegen.root}/make/lib/native-taglet-1.0.jar" /> + </javadoc> </target> <!-- Same as above but with Cg directories added --> @@ -1060,7 +1062,9 @@ overview="${javadoc.overview}" source="1.4" linkoffline="${javadoc.link} 142-packages" - bottom="${javadoc.bottom}" /> + bottom="${javadoc.bottom}" > + <taglet name="net.highteq.nativetaglet.NativeTaglet" path="${gluegen.root}/make/lib/native-taglet-1.0.jar" /> + </javadoc> </target> <target name="javadoc" depends="javadoc.nocg,javadoc.cg" /> @@ -1073,7 +1077,9 @@ overview="${javadoc.overview}" source="1.4" linkoffline="${javadoc.link} 142-packages" - bottom="${javadoc.bottom}" /> + bottom="${javadoc.bottom}" > + <taglet name="net.highteq.nativetaglet.NativeTaglet" path="${gluegen.root}/make/lib/native-taglet-1.0.jar" /> + </javadoc> </target> <!-- Same as above since Cg directories are not part of spec --> @@ -1085,7 +1091,9 @@ overview="${javadoc.overview}" source="1.4" linkoffline="${javadoc.link} 142-packages" - bottom="${javadoc.bottom}" /> + bottom="${javadoc.bottom}" > + <taglet name="net.highteq.nativetaglet.NativeTaglet" path="${gluegen.root}/make/lib/native-taglet-1.0.jar" /> + </javadoc> </target> <target name="javadoc.spec" depends="javadoc.spec.nocg,javadoc.spec.cg" /> @@ -1098,7 +1106,9 @@ overview="${javadoc.overview}" source="1.4" linkoffline="${javadoc.link} 142-packages" - bottom="${javadoc.bottom}" /> + bottom="${javadoc.bottom}" > + <taglet name="net.highteq.nativetaglet.NativeTaglet" path="${gluegen.root}/make/lib/native-taglet-1.0.jar" /> + </javadoc> </target> <!-- Same as above but with Cg directories added --> @@ -1110,7 +1120,9 @@ overview="${javadoc.overview}" source="1.4" linkoffline="${javadoc.link} 142-packages" - bottom="${javadoc.bottom}" /> + bottom="${javadoc.bottom}" > + <taglet name="net.highteq.nativetaglet.NativeTaglet" path="${gluegen.root}/make/lib/native-taglet-1.0.jar" /> + </javadoc> </target> <target name="javadoc.dev.win32" depends="setup.java.home.dir,init,declare.win32,javadoc.dev.nocg,javadoc.dev.cg" /> |