|
From: <eli...@us...> - 2008-12-22 16:50:09
|
Revision: 3169
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3169&view=rev
Author: elias_naur
Date: 2008-12-22 16:50:00 +0000 (Mon, 22 Dec 2008)
Log Message:
-----------
mingw_ant/build.xml improvements
Modified Paths:
--------------
trunk/LWJGL/platform_build/mingw_ant/build.xml
Modified: trunk/LWJGL/platform_build/mingw_ant/build.xml
===================================================================
--- trunk/LWJGL/platform_build/mingw_ant/build.xml 2008-12-22 16:47:35 UTC (rev 3168)
+++ trunk/LWJGL/platform_build/mingw_ant/build.xml 2008-12-22 16:50:00 UTC (rev 3169)
@@ -3,10 +3,11 @@
<project name="lwjgl native code, native code" basedir="../../bin/lwjgl" default="compile">
<property name="native" location="../../src/native"/>
<property environment="env"/>
+ <property name="mingwprefix" location="x86_64-pc-mingw32-"/>
<property name="mingwhome" location="c:/MinGW64"/>
- <property name="strip" location="${mingwhome}/bin/x86_64-pc-mingw32-strip"/>
- <property name="gcc" location="${mingwhome}/bin/x86_64-pc-mingw32-gcc"/>
- <property name="dlltool" location="${mingwhome}/bin/x86_64-pc-mingw32-dlltool"/>
+ <property name="strip" location="${mingwhome}/${mingwprefix}strip"/>
+ <property name="gcc" location="${mingwhome}/${mingwprefix}gcc"/>
+ <property name="dlltool" location="${mingwhome}/${mingwprefix}dlltool"/>
<property name="dllname" value="lwjgl64.dll"/>
<target name="compile_dir">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|