blob: b81ccc67c3b6305436c3df24427e342511477a1d (
plain)
1
2
3
4
5
6
|
# - add_compile_flags(<target> <flags>...)
# Add compile flags to a target using modern CMake
macro(add_compile_flags _target)
target_compile_options(${_target} PRIVATE ${ARGN})
endmacro()
|