| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project name="jME3-SDK" default="default" basedir=".">
- <description>Builds, tests, and runs the jMonkeyEngine3 SDK.</description>
- <fail message="Please build using Ant 1.7.1 or higher.">
- <condition>
- <not>
- <antversion atleast="1.7.1"/>
- </not>
- </condition>
- </fail>
-
- <target name="default" depends="zip"/>
- <target name="build" description="Builds the complete GDE, copies over engine libraries." depends="-check-platform, -update-sdk-platform-config">
- <ant dir="engine" target="update-sdk"/>
- <ant dir="sdk" target="build"/>
- </target>
- <target name="build-engine" description="Builds the engine libraries only">
- <ant dir="engine" target="clean"/>
- <ant dir="engine" target="dist"/>
- </target>
- <target name="clean" description="Clean all build products" depends="-check-platform, -update-sdk-platform-config">
- <ant dir="engine" target="clean"/>
- <ant dir="sdk" target="clean"/>
- </target>
- <target name="run" description="Runs the SDK" depends="-check-platform, -update-sdk-platform-config">
- <ant dir="engine" target="update-sdk"/>
- <ant dir="sdk" target="run"/>
- </target>
- <target name="zip" description="Builds the complete SDK and packs it as a ZIP file" depends="build">
- <propertyfile file="sdk/nbproject/project.properties"/>
- <move file="sdk/dist/${app.name}.zip" tofile="./jMonkeyEngine-GDE-${app.version}.zip"/>
- </target>
-
- <target name="update-platform" description="Updates the base platform to the latest available build" depends="-remove-platform,-check-platform"/>
- <target name="-check-platform" depends="-check-platform-present" unless="platform.present">
- <property file="sdk/nbproject/project.properties"/>
- <echo message="Downloading base platform, this only has to be done once."/>
- <!--get src="http://jmonkeyengine.googlecode.com/files/platform-base.zip" dest="./" skipexisting="true"/-->
- <get src="http://jmonkeyengine.com/platform/base/alpha/platform-base.zip" dest="./" skipexisting="false"/>
- <!--get src="http://jmonkeyengine.com/updates/${app.version}/platform-base.zip" dest="./" skipexisting="false"/-->
- <unzip src="platform-base.zip" dest="./"/>
- <antcall target="-update-sdk-platform-config"/>
- <delete file="platform-base.zip"/>
- </target>
- <target name="-check-platform-present">
- <available file="netbeans" property="platform.present"/>
- </target>
- <target name="-remove-platform">
- <delete dir="netbeans" failonerror="false"/>
- </target>
- <target name="-update-sdk-platform-config">
- <property name="nbplatform.dir" location="netbeans"/>
- <mkdir dir="sdk/nbproject/private"/>
- <echo file="sdk/nbproject/private/platform-private.properties"
- message="nbplatform.default.netbeans.dest.dir=${nbplatform.dir}
"/>
- <echo file="sdk/nbproject/private/platform-private.properties"
- message="nbplatform.default.harness.dir=${nbplatform.dir}${file.separator}harness
" append="true"/>
- <replace file="sdk/nbproject/private/platform-private.properties" token="\" value="\\"/>
- </target>
-
- <!--
- ****************************************************************
- Only Relevant for building nightly on Hudson server from here on
- ****************************************************************
- -->
-
- <target name="hudson-nightly" depends="update-platform">
- <exec executable="svn" dir="engine">
- <arg value="update" />
- </exec>
- <ant dir="engine" target="dist"/>
- <ant dir="engine" target="build-bullet-natives"/>
- <ant dir="engine" target="update-sdk"/>
- <ant dir="sdk" target="hudson-nightly"/>
- </target>
- <target name="hudson-stable" depends="update-platform">
- <exec executable="svn" dir="engine">
- <arg value="update" />
- </exec>
- <ant dir="engine" target="dist"/>
- <ant dir="engine" target="build-bullet-natives"/>
- <ant dir="engine" target="update-sdk"/>
- <ant dir="sdk" target="hudson-stable"/>
- </target>
- </project>
|