Update build.sh

This commit is contained in:
wheremyfoodat 2025-03-16 23:29:36 +02:00 committed by GitHub
parent 130236fc73
commit de1aa10a94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,8 +16,9 @@ cd ../..
cmake -B build -DENABLE_VULKAN=OFF -DBUILD_HYDRA_CORE=ON -DENABLE_USER_BUILD=ON -DCMAKE_TOOLCHAIN_FILE=third_party/ios_toolchain/ios.toolchain.cmake -DPLATFORM=SIMULATORARM64 -DDEPLOYMENT_TARGET="13.0"
cmake --build build --config ${EMULATOR_BUILD_TYPE}
# Copy the bridging header from the emulator source to the Swift interop module folder
# Copy the bridging header and emulator dylib to the iOS folder
cp ./include/ios_driver.h ./src/pandios/Alber/Headers/ios_driver.h
cp ./build/libAlber.dylib ./src/pandios/
# Come back to the iOS directory, build the SwiftUI xcode project and link them together
cd src/pandios
@ -30,4 +31,4 @@ if [ "$RUN_SIMULATOR" = true ] ; then
xcrun simctl install "iPhone 16 Pro" "build/Release-iphonesimulator/Pandios.app"
open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app
xcrun simctl launch --console booted "Alber.Pandios"
fi
fi