diff options
author | Shevek <[email protected]> | 2013-12-27 05:49:13 -0800 |
---|---|---|
committer | Shevek <[email protected]> | 2013-12-27 05:49:13 -0800 |
commit | bdc6c852f418c3e042aa41469d84544e5f60a526 (patch) | |
tree | 7866346f0fa48ad46a6a427d016dd4b83451dbbe /build.xml | |
parent | 39264fd6d2a6646e49f83b5b2b3512c1663a1c9b (diff) |
Version bump to 1.4.0-SNAPSHOT.
Rewrite build system to use gradle.
Clean up source for the new generation.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/build.xml b/build.xml deleted file mode 100644 index 4657aa1..0000000 --- a/build.xml +++ /dev/null @@ -1,46 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project name="jcpp" default="all" basedir="."> - <dirname property="global.dir.root" file="${ant.file}"/> - <property name="global.dir.etc" value="${global.dir.root}/etc"/> - <import file="${global.dir.etc}/global.xml" /> - - <target name="clean" depends="global-clean" /> - <target name="compile" depends="global-compile" /> - <target name="all" depends="global-tar" /> - - - <target name="junit" depends="global-junit" /> - <target name="test" depends="global-junit" /> - <!-- global-findbugs" --> - - <target name="findbugs" depends="global-findbugs,global-findbugs-gui" /> - - <target name="test-ant"> - <delete dir="${global.dir.build}/output" /> - <mkdir dir="${global.dir.build}/output" /> - - <path id="cpp-classpath"> - <path refid="runtime-classpath" /> - <pathelement path="${global.dir.src.resources}" /> - </path> - - <taskdef - resource="org/anarres/cpp/taskdef.properties" - classpathref="cpp-classpath" - loaderref="ant" /> - - <cpp todir="${global.dir.build}/output"> - <fileset file="${global.dir.src}/input/test0.c" /> - <fileset file="${global.dir.src}/input/test1.c" /> - <systemincludepath> - <pathelement path="${global.dir.src}/input" /> - </systemincludepath> - <localincludepath> - <pathelement path="${global.dir.src}/input" /> - </localincludepath> - </cpp> - </target> - - -</project> |