-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-rns.xml
executable file
·47 lines (36 loc) · 1.28 KB
/
build-rns.xml
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
42
43
44
45
46
47
<project name="RNSCC" default="run">
<path id="jars">
<fileset dir="./lib" includes="**/*.jar"/>
</path>
<target name="clean">
<delete dir="bin"/>
<delete dir="exe"/>
</target>
<target name="compile">
<mkdir dir="bin"/>
<javac srcdir="src" destdir="bin" classpathref="jars" includeantruntime="false"/>
</target>
<target name="jar" depends="compile">
<mkdir dir="."/>
<jar destfile="./RNSCC.jar" basedir="bin">
<zipgroupfileset dir="lib" includes="*.jar"/>
<manifest>
<attribute name="Main-Class" value="rns.RNS"/>
</manifest>
</jar>
</target>
<target name="run">
<java jar="./RNSCC.jar" fork="true">
<sysproperty key="initMembershipFilePath" path="${initMembershipFilePath}"/>
<sysproperty key="allPreviousResultsFilePath" path="${allPreviousResultsFilePath}"/>
<sysproperty key="inputFilePath" path="${inputFilePath}"/>
<sysproperty key="outDir" path="${outDir}"/>
<sysproperty key="maxNbEdit" value="${maxNbEdit}"/>
<sysproperty key="tilim" value="${tilim}"/>
<sysproperty key="solLim" value="${solLim}"/>
<sysproperty key="nbThread" value="${nbThread}"/>
<sysproperty key="isBruteForce" value="${isBruteForce}"/>
<sysproperty key="isIncrementalEditBFS" value="${isIncrementalEditBFS}"/>
</java>
</target>
</project>