diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-03-09 22:47:35 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-03-09 22:47:35 -0700 |
commit | 4a3ed6a7ce035f1b0ad7c8130242d052dc5efcec (patch) | |
tree | a534e14917b4585ed9e8be87ce4df648719ce597 /api_test | |
parent | 624245931f97a2442d2f9bb6b3fd2c6047bf69c1 (diff) |
Check for CMAKE_C_COMPILER (not CC_COMPILER) when setting C flags.
Diffstat (limited to 'api_test')
-rw-r--r-- | api_test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api_test/CMakeLists.txt b/api_test/CMakeLists.txt index e3e84f6..7489388 100644 --- a/api_test/CMakeLists.txt +++ b/api_test/CMakeLists.txt @@ -20,6 +20,6 @@ if(MSVC) endif() set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4127 /wd4244 /wd4267 /wd4706 /wd4800 /D_CRT_SECURE_NO_WARNINGS") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /TP") -elseif(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") +elseif(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -std=c99 -pedantic") endif() |