summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2021-04-07 14:50:29 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2021-04-07 14:50:29 +0200
commitb33124ab780761b2550c5c7769988c072ccc7759 (patch)
tree389fc3827df40e59dd3b39997a11ba23a4dee142
parent473f835911ca967a178edad3c6dd8c69183c2038 (diff)
Meson build: No implicit_include_directories
-rw-r--r--examples/meson.build1
-rw-r--r--tests/meson.build1
2 files changed, 2 insertions, 0 deletions
diff --git a/examples/meson.build b/examples/meson.build
index c383432..adc0e68 100644
--- a/examples/meson.build
+++ b/examples/meson.build
@@ -27,6 +27,7 @@ foreach ex : examples
executable(ex_name, ex_sources,
cpp_args: '-DCAIROMM_DISABLE_DEPRECATED',
dependencies: cairomm_own_dep,
+ implicit_include_directories: false,
gui_app: false,
build_by_default: build_examples
)
diff --git a/tests/meson.build b/tests/meson.build
index 9aa6742..eb2f69c 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -35,6 +35,7 @@ if can_test
exe_file = executable(ex_name, ex_sources,
cpp_args: ex[3] + boost_test_modname_flag + cairomm_tests_extra_cppargs,
dependencies: [cairomm_own_dep, test_dep],
+ implicit_include_directories: false,
gui_app: false,
build_by_default: build_tests,
)