Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
qir
Commits
ef2aef06
Commit
ef2aef06
authored
Sep 14, 2015
by
Julien Lopez
Browse files
Options
Downloads
Patches
Plain Diff
Fix on build.xml, added clean target
parent
c74b2aa5
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
QIR/README
+2
-1
2 additions, 1 deletion
QIR/README
QIR/build.xml
+12
-6
12 additions, 6 deletions
QIR/build.xml
with
14 additions
and
7 deletions
QIR/README
+
2
−
1
View file @
ef2aef06
...
...
@@ -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".
This diff is collapsed.
Click to expand it.
QIR/build.xml
+
12
−
6
View file @
ef2aef06
...
...
@@ -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>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment