Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 692 Bytes

File metadata and controls

62 lines (40 loc) · 692 Bytes

Build on Linux

Scripts are bash

Setup

Make sure you have done the setup for Linux

Build with Ninja

This is the recommended way for building and working with the sample code.

Configure

source ./configure.sh

Build

x64
mkdir -p ./build/debug_x64
pushd ./build/debug_x64

cmake --preset Debug_x64 -G 'Ninja' ../..
ninja

popd
arm64
mkdir -p ./build/debug_arm64
pushd ./build/debug_arm64

cmake --preset Debug_arm64 -G 'Ninja' ../..
ninja

popd

Clean

x64
pushd ./build/debug_x64
ninja clean
popd
arm64
pushd ./build/debug_arm64
ninja clean
popd