We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b959e1a commit dcc175fCopy full SHA for dcc175f
CMakeLists.txt
@@ -68,8 +68,8 @@ elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID MATCHES "Clang"
68
list(APPEND _picky "-Wconversion" "-Wmissing-prototypes" "-Wwrite-strings" "-Wsign-compare" "-Wno-sign-conversion")
69
endif()
70
71
-string(REPLACE ";" " " _picky "${_picky_tmp}")
72
-message(STATUS "Picky compiler options:${_picky_tmp}")
+string(REPLACE ";" " " _picky_tmp "${_picky}")
+message(STATUS "Picky compiler options: ${_picky_tmp}")
73
set_property(DIRECTORY APPEND PROPERTY COMPILE_OPTIONS "${_picky}")
74
75
# Build
0 commit comments