source: release-kits/wirk2/ant-scripts/build.xml@ 17262

Last change on this file since 17262 was 17262, checked in by oranfry, 16 years ago

finishing the split up of compile-uninstaller

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 June 2008
5 Windows Release Kit for Greenstone2 (wirk2)
6 Oran Fry
7 ..........................................................
8-->
9
10<project name="wirk2-build" default="wirk2">
11
12 <!-- CONSTANTS -->
13
14 <!-- the size of the resourse chunks to be put in the wrapped installer -->
15 <property name="resources.chunksize" value="8388608"/><!-- 8MiB -->
16
17 <!-- for the benefit of the shared scripts, set release-kit home -->
18 <property name="rk.home" value="${wirk2.home}" />
19
20
21 <!-- IMPORT OTHER ANT SCRIPTS -->
22 <import file="shared-ant-scripts/init.xml"/>
23 <import file="shared-ant-scripts/operations-on-gli.xml"/>
24 import file="../greenstone2/ant-scripts/rk2-targets.xml"/>
25 <import file="compile.xml"/>
26 <import file="create-distribution.xml"/>
27 <import file="create-installer.xml"/>
28 <import file="wrap.xml"/>
29
30 <!-- THE MAIN TARGET -->
31 <target name="wirk2" depends="init">
32 <antcall target="compile"/>
33 <antcall target="create-distribution"/>
34 <antcall target="create-installer"/>
35 <antcall target="wrap"/>
36 </target>
37
38</project>
Note: See TracBrowser for help on using the repository browser.