projects
/
libam7xxx.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
f2694ac
)
CMakeLists.txt: add support for clang and isolate gcc-only options
author
Antonio Ospite <ospite@studenti.unina.it>
Sat, 29 Jun 2013 22:12:59 +0000
(
00:12
+0200)
committer
Antonio Ospite <ospite@studenti.unina.it>
Sat, 20 Jul 2013 22:18:03 +0000
(
00:18
+0200)
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index
8264845
..
d908f1c
100644
(file)
--- a/
CMakeLists.txt
+++ b/
CMakeLists.txt
@@
-31,7
+31,9
@@
macro(add_flags var)
set(${var} "${${var}} ${_flags}")
endmacro(add_flags)
set(${var} "${${var}} ${_flags}")
endmacro(add_flags)
-if (CMAKE_COMPILER_IS_GNUCC)
+string(REGEX MATCH "clang" CMAKE_COMPILER_IS_CLANG "${CMAKE_C_COMPILER}")
+
+if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
add_definitions(-Wall)
# let CFLAGS env override this
add_definitions(-Wall)
# let CFLAGS env override this
@@
-63,10
+65,8
@@
if (CMAKE_COMPILER_IS_GNUCC)
-Wswitch-enum
-Wundef
-Wunreachable-code
-Wswitch-enum
-Wundef
-Wunreachable-code
- -Wunsafe-loop-optimizations
-Wwrite-strings
-Wwrite-strings
- -fstack-protector
- --param=ssp-buffer-size=4)
+ -fstack-protector)
add_flags(DEBUG_FLAGS
-ggdb
add_flags(DEBUG_FLAGS
-ggdb
@@
-79,10
+79,20
@@
if (CMAKE_COMPILER_IS_GNUCC)
add_flags(STRICT_FLAGS
-Werror
# NOTE: Vanilla libusb-1.0.8 can't live with -pedantic-errors
add_flags(STRICT_FLAGS
-Werror
# NOTE: Vanilla libusb-1.0.8 can't live with -pedantic-errors
- -pedantic-errors
+ -pedantic-errors)
+
+ endif()
+endif()
+
+if (CMAKE_COMPILER_IS_GNUCC)
+ add_flags(CMAKE_C_FLAGS
+ -Wunsafe-loop-optimizations
+ --param=ssp-buffer-size=4)
+
+ if (STRICT_COMPILATION_CHECKS)
+ add_flags(STRICT_FLAGS
# NOTE: GCC >= 4.6 is needed for -Wunused-but-set-variable
-Wunused-but-set-variable)
# NOTE: GCC >= 4.6 is needed for -Wunused-but-set-variable
-Wunused-but-set-variable)
-
endif()
endif()
endif()
endif()