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

Last change on this file since 21630 was 21630, checked in by oranfry, 14 years ago

tidy up for greenstone3, and made wrap shared

File size: 855 bytes
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}/core/ant-scripts/init.xml"/>
6
7 <target name="create-components">
8
9 <!-- core -->
10 <antcall target="create-component"><param name="component" value="core"/></antcall>
11
12 <!-- tomcat -->
13 <antcall target="create-component"><param name="component" value="tomcat"/></antcall>
14
15 <!-- imageagick -->
16 <antcall target="create-component"><param name="component" value="imagemagick"/></antcall>
17
18 <!-- (windows and mac only) -->
19 <if><bool><or><equals arg1="${rk.os}" arg2="windows"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
20 <!-- ghostscript -->
21 <antcall target="create-component"><param name="component" value="ghostscript"/></antcall>
22 </if>
23
24 </target>
25
26
27</project>
Note: See TracBrowser for help on using the repository browser.