summaryrefslogtreecommitdiffstats
path: root/cmakemodules/MacroAddCompileFlags.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmakemodules/MacroAddCompileFlags.cmake')
-rw-r--r--cmakemodules/MacroAddCompileFlags.cmake19
1 files changed, 19 insertions, 0 deletions
diff --git a/cmakemodules/MacroAddCompileFlags.cmake b/cmakemodules/MacroAddCompileFlags.cmake
new file mode 100644
index 0000000..12038c0
--- /dev/null
+++ b/cmakemodules/MacroAddCompileFlags.cmake
@@ -0,0 +1,19 @@
+# - MACRO_ADD_COMPILE_FLAGS(<_target> "flags...")
+
+# Copyright (c) 2006, Oswald Buddenhagen, <[email protected]>
+#
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
+
+MACRO (MACRO_ADD_COMPILE_FLAGS _target _flg)
+
+ GET_TARGET_PROPERTY(_flags ${_target} COMPILE_FLAGS)
+ if (_flags)
+ set(_flags "${_flags} ${_flg}")
+ else (_flags)
+ set(_flags "${_flg}")
+ endif (_flags)
+ SET_TARGET_PROPERTIES(${_target} PROPERTIES COMPILE_FLAGS "${_flags}")
+
+ENDMACRO (MACRO_ADD_COMPILE_FLAGS)