Added notes

Added notes on the compiler warning flags and such.
This commit is contained in:
Jake Goodwin 2025-01-24 23:39:26 -08:00
parent aed74f5710
commit b1b0e14209
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,10 @@ endif()
# For being able to used LSP # For being able to used LSP
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) 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 # Request C 17 standard features
set(CMAKE_C_STANDARD 17) set(CMAKE_C_STANDARD 17)
set(CMAKE_C_STANDARD_REQUIRED True) set(CMAKE_C_STANDARD_REQUIRED True)