Skip to content
Snippets Groups Projects
Commit 75dff23f authored by Philippe Suter's avatar Philippe Suter
Browse files

all the libraries are on the SVN now. Runner script should be computer-independant.

parent b96e3351
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@
<!-- <property name="tests.dir" value="${base.dir}/tests" /> -->
<property name="dist.dir" value="${base.dir}/dist" />
<property name="lib.dir" value="${basedir}/lib" />
<property name="lib-bin.dir" value="${basedir}/lib-bin" />
<property name="build.dir" value="${base.dir}/bin" />
<property name="build.plugin.funcheck.dir" value="${build.dir}/plugin" />
......@@ -128,7 +129,7 @@
<fileset file="./scalac-plugin.xml" />
</jar>
<echo file="${script.file}" message="#!/bin/sh${line.separator}scalac -cp ./lib/z3.jar -Xplugin:${dist.jar} $@${line.separator}" />
<echo file="${script.file}" message="#!/bin/sh${line.separator}LD_LIBRARY_PATH=${lib-bin.dir} java -Dscala.home=${scala.home} -classpath ${scala-library.jar}:${scala-compiler.jar}:${distjar}:${lib.dir}/z3.jar scala.tools.nsc.Main -Xplugin:${dist.jar} $@${line.separator}" />
<chmod file="${script.file}" perm="u+x" />
</target>
......
File added
File added
#!/bin/sh
SCALALIBDIR=/home/psuter/scala/current/lib
DISTDIR=/home/psuter/guru-svn/funcheck/dist
LIBDIR=/home/psuter/guru-svn/funcheck/lib
SCALAHOME=/home/psuter/scala/current
LD_LIBRARY_PATH=/home/psuter/software/z3/lib java -Dscala.home=${SCALAHOME} -classpath ${SCALALIBDIR}/scala-compiler.jar:${SCALALIBDIR}/scala-library.jar:${DISTDIR}/funcheck-plugin.jar:${LIBDIR}/z3.jar scala.tools.nsc.Main -Xplugin:${DISTDIR}/funcheck-plugin.jar $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment