Skip to content

Commit

Permalink
Copy native files to build process, otherwise we will missing them in…
Browse files Browse the repository at this point in the history
… the jar files
  • Loading branch information
a-schild committed Jul 24, 2014
1 parent 0fabea9 commit ce8d93c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@

<target name="compile" depends="clean">
<mkdir dir="build/classes" />
<copy todir="build/classes/it/sauronsoftware/jave/native">
<fileset dir="src/it/sauronsoftware/jave/native" />
</copy>
<javac target="${JavaVersion}" source="${JavaVersion}" srcdir="src" destdir="build/classes" classpathref="classpath"/>
</target>

Expand Down

0 comments on commit ce8d93c

Please sign in to comment.