diff options
author | Kenneth Russel <[email protected]> | 2009-06-13 00:59:17 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2009-06-13 00:59:17 +0000 |
commit | f5dde26f642700e149724299bec78a98d1e2dfbc (patch) | |
tree | 991a9b6de6ac82f50c8db1fc3804453bade32244 /make/build-nativewindow.xml | |
parent | 283375496c2d71ed699ffd28cbdc08d3b91099bb (diff) |
Fixed build problems with VC9 where manifests were not installed
correctly into DLLs; updated documentation
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1937 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/build-nativewindow.xml')
-rw-r--r-- | make/build-nativewindow.xml | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/make/build-nativewindow.xml b/make/build-nativewindow.xml index 374f90b1e..496382113 100644 --- a/make/build-nativewindow.xml +++ b/make/build-nativewindow.xml @@ -773,16 +773,8 @@ <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"> - <arg value="-manifest"/> - <arg value="${obj}/nativewindow.dll.manifest"/> - <arg value="-outputresource:${obj}/nativewindow.dll;#2"/> - </exec> - <exec executable="mt"> - <arg value="-manifest"/> - <arg value="${obj}/nativewindow_awt.dll.manifest"/> - <arg value="-outputresource:${obj}/nativewindow_awt.dll;#2"/> - </exec> + <msvc.manifest objdir="${obj}" dllname="nativewindow" /> + <msvc.manifest objdir="${obj}" dllname="nativewindow_awt" /> </target> <target name="c.build.nativewindow" depends="c.configure,c.build.nativewindow.windowlib,c.build.nativewindow.awt"> |