Added notes
Added notes on the compiler warning flags and such.
This commit is contained in:
parent
aed74f5710
commit
b1b0e14209
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue