From ca2f91212c72622318f8e88ede4656da11ae804c Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Thu, 17 Jul 2025 08:09:26 +0200 Subject: [PATCH] Extended bat build rule with compiler warnings. --- examplebuildvoxelgridfrommotion.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examplebuildvoxelgridfrommotion.bat b/examplebuildvoxelgridfrommotion.bat index 8201200..08403cb 100644 --- a/examplebuildvoxelgridfrommotion.bat +++ b/examplebuildvoxelgridfrommotion.bat @@ -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