Use platform-agnostic make for CI

This commit is contained in:
Jackson Coxson
2025-08-12 12:18:14 -06:00
parent 388b50246a
commit bc5b15bd39

View File

@@ -22,11 +22,13 @@ create-example-build-folder:
[working-directory: 'cpp/examples/build']
build-cpp: build-ffi-native create-example-build-folder
cmake .. && make
cmake -S .. -B . -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release --parallel
[working-directory: 'ffi/examples/build']
build-c: build-ffi-native create-example-build-folder
cmake .. && make
cmake -S .. -B . -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release --parallel
xcframework: apple-build
rm -rf swift/IDevice.xcframework