forked from xml3d/xml3d.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
22 lines (18 loc) · 737 Bytes
/
Copy pathbuild.xml
File metadata and controls
22 lines (18 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<project name="xml3d-tools-module" default="concat" basedir=".">
<description>
A couple of small utilities, such as a camera controller and animations.
</description>
<import file="../build/build-master.xml" />
<filelist dir="." id="toolsFiles">
<file name="./animations.js" />
<file name="./camera.js" />
<file name="./scene_inspector.js" />
</filelist>
<target name="concat">
<concat-module name="${ant.project.name}" path="${build.path}" sources="toolsFiles"/>
</target>
<target name="compile">
<compile-module name="${ant.project.name}" path="${build.path}" sources="toolsFiles"/>
</target>
</project>