From d44de588fc5e672a2c5e687cfec58173a495ee7c Mon Sep 17 00:00:00 2001 From: vnugent Date: Mon, 4 Nov 2024 21:59:06 -0500 Subject: update dependencies and changelog for release --- CMakeLists.txt | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c2e700..77b3d48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -271,10 +271,8 @@ if(MSVC) list(APPEND _NC_COMPILE_OPTS /sdl #enable additional security checks /TC #compile as c - /GS #buffer security check + /GS #buffer security check - $<$:/fsanitize=address> - $<$:/FC> #show full path in diagnostics $<$:/showIncludes> #show a list of all included header files during build @@ -307,11 +305,11 @@ elseif(CMAKE_COMPILER_IS_GNUCC) if(build_type STREQUAL "debug") list(APPEND _NC_COMPILE_OPTS - -g - -Og - -Wall - -Werror - -pedantic + -g # enable debug info + -Og # disable all optimizations + -Wall # enable all warnings + -Werror # warnings as errors + -pedantic # enable pedantic warnings ) endif() endif() -- cgit