source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Content/Web/mrdoob-three.js-4862f5f/utils/build/build.xml@ 28897

Last change on this file since 28897 was 28897, checked in by davidb, 10 years ago

GUI front-end to server base plus web page content

  • Property svn:mime-type set to application/xml
File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project name="THREE.JS" basedir="." default="build">
3 <property name="build_dir" value="./" description="THREE.js build directory" />
4 <property name="build_py" value="${build_dir}/build.py" description="THREE.js 'build.py' file" />
5 <property name="python_dir" value="" description="Python directory, leave empty if in classpath or don't forget ending slash" />
6
7 <target name="build" description="Build all THREE.js">
8 <exec executable="${python_dir}python">
9 <arg value="${build_py}"/>
10 <arg value="--all"/>
11 </exec>
12 </target>
13
14 <target name="common" description="Build THREE.js commons">
15 <exec executable="${python_dir}python">
16 <arg value="${build_py}"/>
17 <arg value="--common"/>
18 <arg value="--includes"/>
19 </exec>
20 </target>
21
22 <target name="debug" description="Build debug THREE.js">
23 <exec executable="${python_dir}python">
24 <arg value="${build_py}"/>
25 <arg value="--all"/>
26 <arg value="--debug"/>
27 </exec>
28 </target>
29
30 <target name="minified" description="Build minified THREE.js">
31 <exec executable="${python_dir}python">
32 <arg value="${build_py}"/>
33 <arg value="--all"/>
34 <arg value="--minified"/>
35 </exec>
36 </target>
37</project>
Note: See TracBrowser for help on using the repository browser.