source: main/trunk/release-kits/kits/rk3/ant-scripts/create-components.xml@ 23612

Last change on this file since 23612 was 23612, checked in by sjm84, 13 years ago

Various fixes and tidying up

File size: 1.0 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="rk3-create-components">
3
4 <import file="${basedir}/compiled/resources/xml/components.xml"/>
5 <import file="${rk.home}/shared/core/ant-scripts/shared.xml"/>
6
7 <target name="create-components">
8
9 <!-- core -->
10 <antcall target="create-component">
11 <param name="component" value="core"/>
12 <param name="ext-x64" value=""/>
13 </antcall>
14
15 <!-- tomcat -->
16 <antcall target="create-component">
17 <param name="component" value="tomcat"/>
18 <param name="ext-x64" value=""/>
19 </antcall>
20
21 <!-- imageagick -->
22 <antcall target="create-component">
23 <param name="component" value="imagemagick"/>
24 <param name="ext-x64" value=""/>
25 </antcall>
26
27 <!-- (windows and mac only) -->
28 <if><bool><or><equals arg1="${rk.os}" arg2="windows"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
29 <!-- ghostscript -->
30 <antcall target="create-component">
31 <param name="component" value="ghostscript"/>
32 <param name="ext-x64" value=""/>
33 </antcall>
34 </if>
35
36 </target>
37
38
39</project>
Note: See TracBrowser for help on using the repository browser.