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
23 lines (20 loc) · 803 Bytes
/
build.xml
File metadata and controls
23 lines (20 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<project name="xml3d-data-module" default="concat" basedir=".">
<description>
All data handling related functionality
</description>
<import file="../../build/build-master.xml" />
<filelist dir="." id="sourceFiles">
<file name="./base.js" />
<file name="./adapter/data.js" />
<file name="./adapter/values.js" />
<file name="./adapter/texture.js" />
<file name="./adapter/misc.js" />
<file name="./adapter/factory.js" />
<file name="./adapter/json/factory.js" />
<file name="./adapter/binary/factory.js" />
</filelist>
<target name="concat">
<concat-module name="${ant.project.name}" path="${build.path}" sources="sourceFiles"/>
</target>
</project>