-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrake-targets.xml
32 lines (24 loc) · 992 Bytes
/
rake-targets.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<project name="rake-targets" default="echoProperties">
<exec executable="./build-scripts/artd-rakish-find" outputproperty="rake.ant.xml">
<arg value="call-rake.xml"/>
</exec>
<!--
<target name="printProperties">
<echo message="${rake.ant.xml}" />
</target>
-->
<import file="${rake.ant.xml}" />
<target name="autogen" description="create generated code">
<call-rake file="./rakefile.rb" target="autogen" />
</target>
<target name="cleanAll" description="delete output directory">
<call-rake file="./build-scripts/rakefile.rb" target="cleanAll" />
</target>
<target name="genProject" description="delete output directory">
<call-rake file="./rakefile.rb" target="genProject" />
</target>
<target name="resources" description="copy resource files to runtime area">
<call-rake file="./rakefile.rb" target="resources" />
</target>
</project>