ComputePlayground/make_all.sh

8 lines
286 B
Bash
Raw Normal View History

ComputeEngine_ROOT=$(dirname $0)/ComputeEngine
vcpkg_ROOT=$1
cmake -B ComputeEngine/build -S ComputeEngine -DCMAKE_TOOLCHAIN_FILE=$vcpkg_ROOT
cmake --build ComputeEngine/build --config Release
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=$vcpkg_ROOT
cmake --build build --config Release