Files
filament/ios/samples/generate-samples.sh
Ben Doherty 035f162ebc iOS: small improvements to sample projects (#5579)
- 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
2022-05-19 15:50:51 -07:00

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 ..