Browse Source

CMake: ENABLE_CUSTOM_COMPILER_FLAGS option

Max Bruckner 8 năm trước cách đây
mục cha
commit
f2cb5e4dd4
1 tập tin đã thay đổi với 5 bổ sung2 xóa
  1. 5 2
      CMakeLists.txt

+ 5 - 2
CMakeLists.txt

@@ -12,8 +12,11 @@ set(CJSON_VERSION_SO 1)
 set(CJSON_UTILS_VERSION_SO 1)
 set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
 
-if(("${CMAKE_C_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_C_COMPILER_ID}" MATCHES "Clang"))
-    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c89 -pedantic -Wall -Wextra -Werror -Wstrict-prototypes -Wwrite-strings")
+option(ENABLE_CUSTOM_COMPILER_FLAGS ON)
+if (ENABLE_CUSTOM_COMPILER_FLAGS)
+    if(("${CMAKE_C_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_C_COMPILER_ID}" MATCHES "Clang"))
+        set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c89 -pedantic -Wall -Wextra -Werror -Wstrict-prototypes -Wwrite-strings")
+    endif()
 endif()
 
 #variables for pkg-config