- Ensure C++17 is used to compile sample projects - Upgrade to the latest Xcodegen and re-generate projects - Add a bundle ID disambiguator so users don't need create unique bundle Ids when opening sample projects - Add a simple generate-samples.sh script
12 lines
290 B
Bash
Executable File
12 lines
290 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
cd backend-test && xcodegen && cd ..
|
|
cd gltf-viewer && xcodegen && cd ..
|
|
cd hello-ar && xcodegen && cd ..
|
|
cd hello-gltf && xcodegen && cd ..
|
|
cd hello-pbr && xcodegen && cd ..
|
|
cd hello-triangle && xcodegen && cd ..
|
|
cd transparent-rendering && xcodegen && cd ..
|