Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-06-22 15:17:55 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-06-22 15:25:42 +0300
commit38247fc80b8c6af4e68d0c0809eb6af0c0a65ea4 (patch)
treedd4622f0b599851940ff2517b0bf0d3b4f664f90 /build_files/cmake
parent0d7e758c91eadead5cfb3a67da5b95ec6d07773c (diff)
CMake: Cleanup, rename CC_REMOVE_STRICT_FLAGS to C_REMOVE_STRICT_FLAGS
Diffstat (limited to 'build_files/cmake')
-rw-r--r--build_files/cmake/macros.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 1e6e4779224..e77d096c145 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -1076,7 +1076,7 @@ macro(remove_strict_flags)
)
# negate flags implied by '-Wall'
- add_cc_flag("${CC_REMOVE_STRICT_FLAGS}")
+ add_cc_flag("${C_REMOVE_STRICT_FLAGS}")
add_cxx_flag("${CXX_REMOVE_STRICT_FLAGS}")
endif()
@@ -1089,7 +1089,7 @@ macro(remove_strict_flags)
)
# negate flags implied by '-Wall'
- add_cc_flag("${CC_REMOVE_STRICT_FLAGS}")
+ add_cc_flag("${C_REMOVE_STRICT_FLAGS}")
add_cxx_flag("${CXX_REMOVE_STRICT_FLAGS}")
endif()
@@ -1130,7 +1130,7 @@ macro(remove_strict_flags_file
set_source_files_properties(${_SOURCE}
PROPERTIES
- COMPILE_FLAGS "${CC_REMOVE_STRICT_FLAGS}"
+ COMPILE_FLAGS "${C_REMOVE_STRICT_FLAGS}"
)
endif()