Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use direct SDL2 calls instead of relying on an extra process #15

Merged
merged 5 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
* AWT, Libretro, SDL
****************************************************
-->
<property name="lib.dir" value="lib"/>

<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>

<mkdir dir="build/classes"/>
<echo message="Building Objectweb asm libraries" />
Expand All @@ -23,6 +27,7 @@
<javac
srcdir="src"
destdir="build/classes"
classpathref="classpath"
includeantruntime="false"
debug="true"
debuglevel="lines,vars,source"
Expand Down Expand Up @@ -72,6 +77,7 @@
destfile="build/freej2me-sdl.jar"
basedir="build/classes">
<fileset dir="resources" />
<zipgroupfileset dir="lib" excludes="META-INF/**" includes="*.jar"/>
<metainf dir="META-INF" />
<manifest>
<!-- SDL Version -->
Expand Down
Binary file added lib/jna-5.15.0.jar
Binary file not shown.
Binary file added lib/jna-platform-5.15.0.jar
Binary file not shown.
Binary file added lib/libsdl4j-2.26.5-1.2.jar
Binary file not shown.
Loading