Skip to content
Snippets Groups Projects
Commit 23d0da3d authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Introduce a macro that adds all flags to all targets

parent 182b7597
No related branches found
No related tags found
No related merge requests found
......@@ -1155,3 +1155,15 @@ macro(add_dune_all_flags targets)
target_link_libraries(${target} ${DUNE_LIBS} ${libs})
endforeach()
endmacro(add_dune_all_flags targets)
# set includes, libraries and compile definitions for the entire project recursively
macro(dune_enable_all_packages)
get_property(all_incs GLOBAL PROPERTY ALL_PKG_INCS)
include_directories(${all_incs})
get_property(all_libs GLOBAL PROPERTY ALL_PKG_LIBS)
link_libraries(${DUNE_LIBS} ${all_libs})
get_property(all_defs GLOBAL PROPERTY ALL_PKG_DEFS)
foreach(def ${all_defs})
add_definitions("-D${def}")
endforeach(def in ${all_defs})
endmacro(dune_enable_all_packages)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment