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

Last change on this file since 31982 was 31982, checked in by ak19, 7 years ago

Minor spelling error to help with searching for imagemagick occurrences in release-kits scripts.

File size: 1.2 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 <!-- imagemagick -->
22 <antcall target="create-component">
23 <param name="component" value="imagemagick"/>
24 <param name="ext-x64" value=""/>
25 </antcall>
26
27 <!-- Flax doesn't want GhostScript -->
28 <if><bool><not><equals arg1="${forward.install.flax}" arg2="true"/></not></bool>
29 <!-- (windows and mac only) -->
30 <if><bool><or><equals arg1="${rk.os}" arg2="windows"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
31 <!-- ghostscript -->
32 <antcall target="create-component">
33 <param name="component" value="ghostscript"/>
34 <param name="ext-x64" value=""/>
35 </antcall>
36 </if>
37 </if>
38
39 </target>
40
41
42</project>
Note: See TracBrowser for help on using the repository browser.