- 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
14 lines
517 B
YAML
14 lines
517 B
YAML
name: backend-test
|
|
options:
|
|
bundleIdPrefix: ${SAMPLE_CODE_DISAMBIGUATOR}.google.filament
|
|
include: ../app-template.yml
|
|
targets:
|
|
backend-test:
|
|
templates:
|
|
- FilamentApp
|
|
settings:
|
|
base:
|
|
# Because each test case is a separate file, the -force_load flag is necessary to prevent the
|
|
# linker from removing "unused" symbols.
|
|
OTHER_LDFLAGS: ["-lfilamat", "-force_load ../../../out/ios-debug/filament/lib/arm64/libbackend_test.a"]
|