Skip to content
Snippets Groups Projects
Commit ef2aef06 authored by Julien Lopez's avatar Julien Lopez
Browse files

Fix on build.xml, added clean target

parent c74b2aa5
Branches
No related tags found
No related merge requests found
......@@ -2,4 +2,5 @@ This project is an implementation of the Query Intermediate Representation.
== Build ==
To create the archive qir.jar, run ant on the root directory.
To create the archive qir.jar, run "ant" on the root directory.
To remove generated files, run "ant clean".
......@@ -2,9 +2,15 @@
<!-- Configuration of the Ant build system to generate a Jar file -->
<project name="QIR" default="CreateJar">
<target name="CreateJar" description="Create Jar file">
<mkdir dir="bin"/>
<jar jarfile="qir.jar">
<fileset dir="bin"/>
<fileset dir="src" includes="**/*.java"/>
</jar>
</target>
<target name="clean" description="Removes generated files">
<delete dir="bin"/>
<delete file="qir.jar"/>
</target>
</project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment