Ldc
2024-04-08 343224eb5ac29aa0b914e66f34b7a64ad2a46364
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<!--classes.jar; src.jar-->
<project name = "platform-Client" default = "build-AllClient-jar" basedir = ".">
 
    
    <target name="build-AllClient-jar" depends="PLTClientBase,PLTClient"/>
    
    <target name="PLTClientBase">
        <ant antfile="${basedir}/../PLTClientBase/build-jar.xml" dir="${basedir}/../PLTClientBase" target="build-ClientBase-jar"/>
    </target>
    <target name="PLTClient">
        <ant antfile="${basedir}/../PLTClient/build-jar.xml" dir="${basedir}/../PLTClient" target="build-Client-jar"/>
    </target>
 
</project>