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 (19 loc) · 787 Bytes
/
build.xml
File metadata and controls
23 lines (19 loc) · 787 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-base-module" default="concat" basedir=".">
<description>
All base functionality such as Adapters, Factories and ResourceManager
</description>
<import file="../../build/build-master.xml" />
<filelist dir="." id="sourceFiles">
<file name="./adapter.js" />
<file name="./adapterhandle.js" />
<file name="./resourcemanager.js" />
<file name="./formathandler.js" />
</filelist>
<target name="concat">
<concat-module name="${ant.project.name}" path="${build.path}" sources="sourceFiles"/>
</target>
<target name="compile">
<compile-module name="${ant.project.name}" path="${build.path}" sources="sourceFiles"/>
</target>
</project>