mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-22 17:06:36 -06:00
a9f35ed7ae
A huge bikeshed fest but it distracted me enough to do it anyway.
20 lines
679 B
CMake
20 lines
679 B
CMake
# - macro_add_source_file_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_source_file_compile_flags _sourcefile _additionalflags)
|
|
|
|
get_source_file_property (_flags ${_sourcefile} COMPILE_FLAGS)
|
|
if (_flags)
|
|
set(_flags "${_flags} ${_additionalflags}")
|
|
else (_flags)
|
|
set(_flags "${_additionalflags}")
|
|
endif (_flags)
|
|
set_source_files_properties (${_sourcefile} PROPERTIES COMPILE_FLAGS "${_flags}")
|
|
|
|
endmacro (macro_add_source_file_compile_flags)
|