diff options
author | endolf <[email protected]> | 2010-03-20 10:51:45 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2010-03-20 10:51:45 +0000 |
commit | 654ae9c323f80bcd5ae90c69b643c7c48601b504 (patch) | |
tree | 94c592b466f2284f528e2baf46820278a936fb70 | |
parent | adc1629084875d1c2bc8f993d5327c6b322bb0da (diff) |
Directx SDK has changed the location of the x86 libs.
Clean out the exp and libs that are created during a build when clean target is run.
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@234 e343933a-64c8-49c5-92b1-88f2ce3e89e8
-rw-r--r-- | plugins/windows/src/native/build.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/windows/src/native/build.xml b/plugins/windows/src/native/build.xml index 129e514..75548ec 100644 --- a/plugins/windows/src/native/build.xml +++ b/plugins/windows/src/native/build.xml @@ -46,6 +46,8 @@ <fileset dir="raw" includes="*.obj"/> <fileset dir="dx8" includes="*.obj"/> <fileset dir="." includes="*.dll"/> + <fileset dir="." includes="*.exp"/> + <fileset dir="." includes="*.lib"/> <fileset dir="../../../common/src/native" includes="*.obj"/> </delete> </target> @@ -61,7 +63,7 @@ <condition property="rawdllname" value="jinput-raw.dll" else="jinput-raw_64.dll"> <equals arg1="${os.arch}" arg2="x86"/> </condition> - <condition property="dxhomelib" value="${dxhome}\lib" else="${dxhome}\lib\x64"> + <condition property="dxhomelib" value="${dxhome}\lib\x86" else="${dxhome}\lib\x64"> <equals arg1="${os.arch}" arg2="x86"/> </condition> <condition property="sdkhomelib" value="${sdkhome}\lib" else="${sdkhome}\lib\x64"> |