From 3393ef849eeb83584f97569c1dc652d7ba7a3887 Mon Sep 17 00:00:00 2001 From: Nathan Miller Date: Sat, 20 Apr 2024 11:35:48 -0700 Subject: [PATCH] add commented out /sdl compiler-time checks --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index da42bbf7..e2cf526e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,6 +58,7 @@ if (MSVC) add_compile_options(/wd4251) # ignore C4100: 'identifier': unreferenced formal parameter add_compile_options(/wd4100) + #add_compile_options(/sdl) else() # additional warnings add_compile_options(-Wall -Wextra -Wpedantic)