ComputePlayground/make_all_user.bat
Dawid Pietrykowski 672758f7ec Initial commit
2022-11-09 23:54:43 +01:00

10 lines
485 B
Batchfile
Executable File

@echo off
set GLFW_ROOT=C:/lib/glfw-3.3.4.bin.WIN64
set GLEW_ROOT=C:/lib/glew-2.1.0_x64
set stb_image_ROOT=C:/lib/stb
set ComputeEngine_ROOT=%CD%/ComputeEngine
cmake -B ComputeEngine/build -S ComputeEngine -DGLFW_ROOT=%GLFW_ROOT% -DGLEW_ROOT=%GLEW_ROOT% -Dstb_image_ROOT=%stb_image_ROOT%
cmake --build ComputeEngine/build --config Release
cmake -B build -S . -DGLFW_ROOT=%GLFW_ROOT% -DGLEW_ROOT=%GLEW_ROOT% -Dstb_image_ROOT=%stb_image_ROOT% -DComputeEngine_ROOT=%ComputeEngine_ROOT%