You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
582 B
20 lines
582 B
# - MACRO_ADD_COMPILE_FLAGS(<_target> "flags...")
|
|
|
|
# Copyright (c) 2006, Oswald Buddenhagen, <ossi@kde.org>
|
|
#
|
|
# 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)
|