You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
407 B
13 lines
407 B
#!/bin/bash
|
|
|
|
mkdir -p build
|
|
cp CMakeLists.header.txt build/CMakeLists.txt
|
|
cmake -Sbuild -Bbuild -DCC_USE_GLES2=OFF -DCC_USE_VULKAN=OFF -DCC_USE_GLES3=OFF -DCC_USE_METAL=ON \
|
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
|
|
-DUSE_PHYSICS_PHYSX=ON \
|
|
-DCMAKE_OSX_SYSROOT=iphoneos \
|
|
-DCMAKE_SYSTEM_NAME=iOS \
|
|
-GXcode
|
|
if [[ -f build/compile_commands.json ]]; then
|
|
cp build/compile_commands.json .
|
|
fi
|
|
|