diff options
author | David Robillard <d@drobilla.net> | 2025-01-20 19:34:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-20 19:35:25 -0500 |
commit | 9f56463f38633ba89a5b22151f3aa529a7603a50 (patch) | |
tree | 77f09dd610c8d6c43f30010e4493a6b51a0e0114 /src/gui/meson.build | |
parent | 2cb4c31220660994310054f736227a6ae1d692cd (diff) | |
download | ingen-9f56463f38633ba89a5b22151f3aa529a7603a50.tar.gz ingen-9f56463f38633ba89a5b22151f3aa529a7603a50.tar.bz2 ingen-9f56463f38633ba89a5b22151f3aa529a7603a50.zip |
Use "system" include type for all dependencies
Things get confused when these flags differ across projects, so universally
use "system" for external dependencies.
Diffstat (limited to 'src/gui/meson.build')
-rw-r--r-- | src/gui/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/meson.build b/src/gui/meson.build index 3b9a7bb6..266c8abb 100644 --- a/src/gui/meson.build +++ b/src/gui/meson.build @@ -31,6 +31,7 @@ gtkmm_dep = dependency( ganv_dep = dependency( 'ganv-1', fallback: ['ganv', 'ganv_dep'], + include_type: 'system', required: get_option('gui'), version: '>= 1.5.2', ) |