Skip to content

Commit ce4f49b

Browse files
committed
Meson build: No implicit_include_directories
1 parent 765331d commit ce4f49b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

examples/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ foreach ex : examples
2222
exe_file = executable(ex_name, ex_sources,
2323
cpp_args: '-DSIGCXX_DISABLE_DEPRECATED',
2424
dependencies: sigcxx_own_dep,
25+
implicit_include_directories: false,
2526
gui_app: false,
2627
build_by_default: build_examples
2728
)

sigc++/adaptors/lambda/meson.build

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# sigc++/adaptors/lambda
22

3-
# Input: python3, handle_built_files, m4_template, m4_include_dir
4-
# Output:
3+
# Input: maintainer_mode, python3, handle_built_files, m4_template, m4_include_dir
54
# Input and output: built_h_files, built_cc_files, built_h_file_targets,
65
# built_cc_file_targets
76

sigc++/adaptors/meson.build

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# sigc++/adaptors
22

3-
# Input: python3, handle_built_files, m4_template, m4_include_dir
4-
# Output:
3+
# Input: maintainer_mode, python3, handle_built_files, m4_template, m4_include_dir
54
# Input and output: built_h_files, built_h_file_targets
65

76
# .m4 files to build .h files from.

sigc++/functors/meson.build

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# sigc++/functors
22

3-
# Input: python3, handle_built_files, m4_template, m4_include_dir
4-
# Output:
3+
# Input: maintainer_mode, python3, handle_built_files, m4_template, m4_include_dir
54
# Input and output: built_h_files, built_h_file_targets
65

76
# .m4 files to build .h files from.

sigc++/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Input: sigcxx_build_dep, sigcxx_pcname, sigcxx_libversion, sigcxx_api_version,
44
# install_includedir, project_source_root, sigc_res, python3,
5-
# handle_built_files
5+
# handle_built_files, maintainer_mode
66
# Output: source_h_files, built_h_files, sigcxx_own_dep, built_files_root,
77
# built_h_file_targets
88

tests/meson.build

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ foreach ex : test_programs
5858

5959
exe_file = executable(ex_name, ex_sources,
6060
dependencies: sigcxx_own_dep,
61+
implicit_include_directories: false,
6162
gui_app: false,
6263
build_by_default: true
6364
)
@@ -79,6 +80,7 @@ if can_benchmark
7980

8081
exe_file = executable(ex_name, ex_sources,
8182
dependencies: [sigcxx_own_dep, benchmark_dep],
83+
implicit_include_directories: false,
8284
gui_app: false,
8385
build_by_default: do_benchmark
8486
)

0 commit comments

Comments
 (0)