Skip to content

Commit

Permalink
Fix[build]: disable more bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduytran0 committed Jul 11, 2024
1 parent cdf21b4 commit 6b0684e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ci_build_android.bash
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ elif [ "$LWJGL_BUILD_ARCH" == "arm32" ]; then
elif [ "$LWJGL_BUILD_ARCH" == "x86" ]; then
export NDK_ABI=x86 NDK_TARGET=i686
# Workaround: LWJGL 3 lacks of x86 Linux libraries
mkdir -p bin/libs/native/linux/x86/org/lwjgl/glfw
touch bin/libs/native/linux/x86/org/lwjgl/glfw/libglfw.so
mkdir -p bin/libs/native/linux/x86/org/lwjgl/{freetype,glfw}
touch bin/libs/native/linux/x86/org/lwjgl/{freetype/libfreetype.so,glfw/libglfw.so}
elif [ "$LWJGL_BUILD_ARCH" == "x64" ]; then
export NDK_ABI=x86_64 NDK_TARGET=x86_64
fi
Expand Down Expand Up @@ -59,9 +59,12 @@ yes | ant -Dplatform.linux=true \
-Dbinding.bgfx=false \
-Dbinding.cuda=false \
-Dbinding.egl=false \
-Dbinding.fmod=false \
-Dbinding.harfbuzz=false \
-Dbinding.hwloc=false \
-Dbinding.jawt=false \
-Dbinding.jemalloc=false \
-Dbinding.ktx=false \
-Dbinding.libdivide=false \
-Dbinding.llvm=false \
-Dbinding.lmdb=false \
Expand Down
3 changes: 3 additions & 0 deletions ci_build_ios.bash
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,12 @@ yes | ant -Dplatform.macos=true \
-Dbinding.bgfx=false \
-Dbinding.cuda=false \
-Dbinding.egl=false \
-Dbinding.fmod=false \
-Dbinding.harfbuzz=false \
-Dbinding.hwloc=false \
-Dbinding.jawt=false \
-Dbinding.jemalloc=false \
-Dbinding.ktx=false \
-Dbinding.libdivide=false \
-Dbinding.llvm=false \
-Dbinding.lmdb=false \
Expand Down

0 comments on commit 6b0684e

Please sign in to comment.