diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/build.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index a10a11563..91545b81b 100644 --- a/make/build.xml +++ b/make/build.xml @@ -905,7 +905,6 @@ <param name="output.lib.name" value="jogl_awt"/> <param name="linker.cfg.id" value="${linker.cfg.id.core}"/> </antcall> - <antcall target="c.manifest" inheritRefs="true" /> </target> <target name="c.build.jogl.cg" if="jogl.cg"> @@ -917,6 +916,14 @@ </antcall> </target> + <target name="c.manifest.cg" if="jogl.cg"> + <exec executable="mt"> + <arg value="-manifest"/> + <arg value="${obj}/jogl_cg.dll.manifest"/> + <arg value="-outputresource:${obj}/jogl_cg.dll;#2"/> + </exec> + </target> + <target name="c.manifest" if="isVC8Family"> <!-- exec mt, the Microsoft Manifest Tool, to include DLL manifests in order to resolve the location of msvcr80.dll --> <exec executable="mt"> @@ -929,6 +936,7 @@ <arg value="${obj}/jogl_awt.dll.manifest"/> <arg value="-outputresource:${obj}/jogl_awt.dll;#2"/> </exec> + <antcall target="c.manifest.cg" inheritRefs="true" /> </target> <target name="c.build.jogl" depends="c.build.jogl.core,c.build.jogl.awt,c.build.jogl.cg"> |