source: main/trunk/release-kits/kits/rk2/ant-scripts/create-components.xml@ 22325

Last change on this file since 22325 was 22325, checked in by sjm84, 14 years ago

Several upgrades to the release kits have been made including: optional Apache and the ability to create installers with extensions

File size: 766 bytes
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="rk2-create-components">
3
4 <target name="create-components" depends="init,gs2-init">
5
6 <!-- core -->
7 <antcall target="create-component"><param name="component" value="core"/></antcall>
8
9 <!-- imagemagick -->
10 <antcall target="create-component"><param name="component" value="imagemagick"/></antcall>
11
12 <!-- apache httpd -->
13 <antcall target="create-component"><param name="component" value="apachehttpd"/></antcall>
14
15 <!-- windows and mac only -->
16 <if><bool><or><equals arg1="${rk.os}" arg2="windows"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
17 <!-- ghostscript -->
18 <antcall target="create-component"><param name="component" value="ghostscript"/></antcall>
19 </if>
20
21 </target>
22
23</project>
Note: See TracBrowser for help on using the repository browser.