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

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

untested changes to exclude sourcecode from the binary release, use nicer target names and icons

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