Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<project default="all" basedir="." name="LiteSoftAnywhere">

    <property name="DevRootDir" value="../../../.."/>

    <property name="LitesoftJavaDir" value="${DevRootDir}/litesoft/Java"/>



    <target name="all" depends="clean, jar"/>

    <target name="dirs">
        <mkdir dir="build"/>
    </target>

    <target name="jar" depends="compile">
        <jar jarfile="LiteSoftAnywhere.jar">
            <fileset dir="build"    includes="**/*.class"/>
            <fileset dir="src"      excludes="**/.svn/**"/>
        </jar>
    </target>

    <target name="clean">
        <delete>
            <fileset dir="." includes="build/**/*"/>
            <fileset dir="." includes="LiteSoftAnywhere.jar"/>
        </delete>
    </target>

    <target name="compile" depends="dirs">
        <javac srcdir="src" destdir="build" debug="on" includeantruntime="false" deprecation="off" optimize="off">
            <compilerarg line="-Xlint:&quot;-unchecked&quot;"/>
            <classpath>
                <pathelement location="${LitesoftJavaDir}/libs/LiteSoft_csHomonyms.jar"/>
                <pathelement location="${LitesoftJavaDir}/libs/LiteSoftDeprecated.jar"/>
                <pathelement location="${LitesoftJavaDir}/logger/LiteSoftLogger.jar"/>
            </classpath>
        </javac>
    </target>

</project>

Commits for litesoft/trunk/Java/core/Anywhere/build.xml

Diff revisions: vs.
Revision Author Commited Message
173 Diff Diff GeorgeS picture GeorgeS Tue 05 Apr, 2011 00:46:01 +0000
167 Diff Diff GeorgeS picture GeorgeS Mon 04 Apr, 2011 01:32:20 +0000
166 GeorgeS picture GeorgeS Mon 04 Apr, 2011 00:59:37 +0000