Extended bat build rule with compiler warnings.

This commit is contained in:
Petter Reinholdtsen 2025-07-17 08:09:26 +02:00
commit ca2f91212c

View file

@ -1,7 +1,7 @@
@echo off
rem Build with g++
g++ -std=c++17 -O2 ray_voxel.cpp -o ray_voxel
g++ -W -Wall -std=c++17 -O2 ray_voxel.cpp -o ray_voxel
if %ERRORLEVEL% NEQ 0 (
echo [Error] Compilation failed
pause