We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5276b41 commit fb3833cCopy full SHA for fb3833c
CMakeLists.txt
@@ -17,12 +17,18 @@ list(APPEND CMAKE_MODULE_PATH ${dune-common_MODULE_PATH})
17
#include the dune macros
18
include(DuneMacros)
19
20
+# deactivate global include-directories
21
+dune_policy(SET DP_DEFAULT_INCLUDE_DIRS NEW)
22
+
23
# start a dune project with information from dune.module
24
dune_project()
25
dune_add_library(dunefunctions INTERFACE
26
EXPORT_NAME Functions
27
LINK_LIBRARIES ${DUNE_LIBS})
28
29
+# set include directories for dunefunctions library
30
+dune_default_include_directories(dunefunctions INTERFACE)
31
32
add_subdirectory("dune")
33
add_subdirectory("doc")
34
add_subdirectory("examples")
0 commit comments