aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Gouesse <[email protected]>2013-03-26 22:10:11 +0100
committerJulien Gouesse <[email protected]>2013-03-26 22:10:11 +0100
commitf6c002f7e45e7fd521d0021676bd92c99d893406 (patch)
treeacf9a757b0e2038f4ef66102e9d219366813a287
parent225dbd523daba306195d6bc24d0d996f946ae8a3 (diff)
Adds a script that downloads the ZIP archive containing OpenAL-Soft Windows binaries, extracts them, puts them into the right directories and deletes the useless directories created during the decompression
-rwxr-xr-xmake/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml
index bf2137b..057eaa4 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -475,7 +475,7 @@
<exec dir="${build}/openal-soft" executable="make" logError="true" failonerror="false" failifexecutionfails="false" />
</target>
- <target name="c.download.openal.soft.windows" if="isWindows">
+ <target name="c.download.openal.soft.windows" >
<property name="c.build.openal.soft.done" value="true" />
<!-- downloads the binaries of OpenAL-Soft for Windows as they aren't bundled with JOAL yet -->
<get src="http://kcat.strangesoft.net/openal-soft-1.15.1-bin.zip" dest="." verbose="true" usetimestamp="true" />
@@ -486,7 +486,7 @@
</patternset>
</unzip>
<!-- deletes the ZIP archive -->
- <delete file="lib/joal/openal-soft-1.15.1-bin.zip" />
+ <delete file="openal-soft-1.15.1-bin.zip" />
<!-- creates the directories from which the DLLs will be picked up -->
<mkdir dir="lib/windows-i586" />
<mkdir dir="lib/windows-amd64" />