From b1b0e14209fbcec1bb33471874a5580fada50654 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 24 Jan 2025 23:39:26 -0800 Subject: [PATCH] Added notes Added notes on the compiler warning flags and such. --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 66a0c0b..a04e731 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,6 +21,10 @@ endif() # For being able to used LSP set(CMAKE_EXPORT_COMPILE_COMMANDS ON) +#"-Wall":: Enable all warnings. +#"-Werror":: Treat all warnings as errors. +#"-Wpedantic":: Issue all warnings demanded by strict ISO + # Request C 17 standard features set(CMAKE_C_STANDARD 17) set(CMAKE_C_STANDARD_REQUIRED True)