Scripts are
bash
Make sure you have done the setup for Linux
This is the recommended way for building and working with the sample code.
source ./configure.shmkdir -p ./build/debug_x64
pushd ./build/debug_x64
cmake --preset Debug_x64 -G 'Ninja' ../..
ninja
popdmkdir -p ./build/debug_arm64
pushd ./build/debug_arm64
cmake --preset Debug_arm64 -G 'Ninja' ../..
ninja
popdpushd ./build/debug_x64
ninja clean
popdpushd ./build/debug_arm64
ninja clean
popd