source: main/trunk/release-kits/kits/clientrk/ant-scripts/build.xml@ 34256

Last change on this file since 34256 was 34256, checked in by ak19, 4 years ago

Tried to add the infrastructure for standalone client-gli (client-fli) to release kit, but there's no way of testing it from home as many properties are simply not set with a plain release-kit checkout and libraries for using things like <if> are also unavailable despite importing shared.xml

File size: 911 bytes
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 July 2020
5 Release Kit for Standalone Client-GLI (clientrk)
6 Based on Oran Fry's work for other the RK3 release kit
7 ..........................................................
8-->
9
10<project name="clientrk-build" default="clientrk">
11 <!-- TODO: 2 artificial vars -->
12 <!--
13 <property name="rk.home" value="/Scratch/ak19/release-kits"/>
14 <property name="outputdir" value="/Scratch/ak19/release-kits"/>
15 -->
16
17 <import file="compile.xml"/>
18
19 <!-- IMPORT OTHER ANT SCRIPTS -->
20 <import file="${rk.home}/shared/core/ant-scripts/shared.xml"/>
21
22 <!-- THE MAIN TARGET -->
23 <target name="clientrk">
24 <antcall target="compile"/>
25 </target>
26
27 <!-- target to show properties in clientrk-build.properties -->
28 <!--<target name="properties" depends="core-properties"/> -->
29
30</project>
Note: See TracBrowser for help on using the repository browser.