Skip to content

Commit

Permalink
Include libraries for MacOS and Windows in the .jar
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-berlin-wmse committed Jan 31, 2022
1 parent 9cfc344 commit 686fd51
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,23 @@
</unzip>
<copy todir="bin">
<fileset dir="${openjfxSDKPath}">
<!-- Linux -->
<include name="libprism*.so"/>
<include name="libjavafx*.so"/>
<include name="libglass*.so"/>
<include name="libdecora_sse.so"/>
<!-- Mac -->
<include name="libprism*.dylib"/>
<include name="libjavafx*.dylib"/>
<include name="libglass.dylib"/>
<include name="libdecora_sse.dylib"/>
</fileset>
<!-- Windows -->
<fileset dir="${openjfxSDKPath}/../bin">
<include name="prism*.dll"/>
<include name="javafx*.dll"/>
<include name="glass.dll"/>
<include name="decora_sse.dll"/>
</fileset>
</copy>
<jar destfile="pattypan.jar" basedir="bin" includes="**/*">
Expand Down

0 comments on commit 686fd51

Please sign in to comment.