Watch
2
0
Fork
You've already forked raylib-cs
0

Update build.yml

This commit is contained in:
MrScautHD 2023-12-27 10:21:16 +01:00
commit b84f5ca6c9

View file

@ -75,6 +75,11 @@ jobs:
curl -Lso raylib.zip https://github.com/raysan5/raylib/archive/refs/tags/${version}.zip
unzip -qq raylib.zip
pushd raylib-${version}; patch -p1 < ../Examples.Android/android.patch; popd
if [ "${{ matrix.arch }}" == "armeabi-v7a" ]; then
export CFLAGS="$CFLAGS -mfloat-abi=softfp -mfpu=vfpv3-d16"
elif [ "${{ matrix.arch }}" == "arm64-v8a" ]; then
export CFLAGS="$CFLAGS -mfix-cortex-a53-835769"
fi
cmake -S raylib-${version} \
-B build \
-D CMAKE_BUILD_TYPE=Release \