瀏覽代碼

add global build.xml

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@6975 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
nor..67 14 年之前
父節點
當前提交
79fea64239
共有 1 個文件被更改,包括 50 次插入0 次删除
  1. 50 0
      build.xml

+ 50 - 0
build.xml

@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project name="jME3-SDK" default="default" basedir=".">
+    <description>Builds, tests, and runs the jMonkeyEngine3 SDK.</description>
+
+    <target name="build" description="Builds the complete SDK" depends="-get-platform">
+        <ant dir="engine" target="update-sdk"/>
+        <property name="nbplatform.dir" location="netbeans"/>
+        <echo file="sdk/nbproject/private/platform-private.properties"
+              message="nbplatform.default.netbeans.dest.dir=${nbplatform.dir}&#xa;"/>
+        <echo file="sdk/nbproject/private/platform-private.properties"
+              message="nbplatform.default.harness.dir=${nbplatform.dir}/harness" append="true"/>
+        <ant dir="sdk" target="build"/>
+    </target>
+
+    <target name="clean" description="Clean all build products">
+        <ant dir="engine" target="clean"/>
+        <ant dir="sdk" target="clean"/>
+    </target>
+
+    <target name="run" description="Runs the SDK">
+        <ant dir="sdk" target="run"/>
+    </target>
+
+    <target name="zip" description="Builds the complete SDK and packs it as a ZIP file" depends="build">
+        <ant dir="sdk" target="build-zip"/>
+        <move file="sdk/dist/jmonkeyplatform.zip" tofile="./jME3-SDK.zip"/>
+    </target>
+
+    <target name="build-engine" description="Builds the engine only">
+        <ant dir="engine" target="clean"/>
+        <ant dir="engine" target="jar"/>
+    </target>
+
+    <target name="hudson-nightly" depends="clean">
+        <ant dir="engine" target="hudson-update-sdk"/>
+        <ant dir="sdk" target="hudson-updatecenter"/>
+    </target>
+
+    <target name="-get-platform" depends="-check-platform" unless="platform.present">
+        <echo message="Downloading base platform, this only has to be done once."/>
+        <get src="http://jmonkeyengine.com/platform/base/alpha/platform-base.zip" dest="./" skipexisting="true"/>
+        <unzip src="platform-base.zip" dest="./"/>
+    </target>
+
+    <target name="-check-platform">
+        <available file="netbeans" property="platform.present"/>
+    </target>
+
+</project>