GPURayTracer/make_all.bat
2023-06-05 00:37:05 +02:00

9 lines
433 B
Batchfile

@echo off
set ComputeEngine_ROOT=%CD%/ComputeEngine
set vcpkg_ROOT=C:\Desktop\git\vcpkg\scripts\buildsystems\vcpkg.cmake
cmake -B ComputeEngine/build -S ComputeEngine -DCMAKE_TOOLCHAIN_FILE=%vcpkg_ROOT% -DVCPKG_TARGET_TRIPLET=x64-windows-static
cmake --build ComputeEngine/build --config Release
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=%vcpkg_ROOT% -DVCPKG_TARGET_TRIPLET=x64-windows-static
cmake --build build --config Release