voxel-engine/build.ps1
2025-11-10 19:51:50 -06:00

13 lines
189 B
PowerShell

cmake -S . -B build
cd build
cmake --build .
cd ..
cp vendor/lib-vc2022/glfw3.dll build/Debug
cp -r shaders/ build/Debug
cp -r objs/ build/Debug
cd build/Debug
.\VoxelEngine.exe
cd ../..