diff options
author | David Robillard <d@drobilla.net> | 2020-08-01 22:41:11 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-02 01:48:48 +0200 |
commit | c0f567d3232cbe165e56cb2684cda52df7cfb90f (patch) | |
tree | 3ffbe6df3f2056fd579a954e00f0bea49b47104e /src/gui | |
parent | 9eadae8edc7a35f87499f58c3e3b9cec68f74a80 (diff) | |
download | ingen-c0f567d3232cbe165e56cb2684cda52df7cfb90f.tar.gz ingen-c0f567d3232cbe165e56cb2684cda52df7cfb90f.tar.bz2 ingen-c0f567d3232cbe165e56cb2684cda52df7cfb90f.zip |
Move public headers to a separate include directory
This is more conventional and probably best practice (since it avoids polluting
the include path with non-headers), and is supported by the clang-tidy
llvm-header-guard check.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/wscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/wscript b/src/gui/wscript index b33bd31e..46216adb 100644 --- a/src/gui/wscript +++ b/src/gui/wscript @@ -42,8 +42,8 @@ def configure(conf): def build(bld): obj = bld(features = 'cxx cxxshlib', cflags = ['-fvisibility=hidden'], - export_includes = ['../..'], - includes = ['../..'], + export_includes = ['../../include'], + includes = ['../../include'], name = 'libingen_gui', target = 'ingen_gui', install_path = '${LIBDIR}', @@ -119,7 +119,7 @@ def build(bld): obj = bld(features = 'cxx cxxshlib', cflags = ['-fvisibility=hidden'], source = 'ingen_gui_lv2.cpp', - includes = ['.', '../..'], + includes = ['.', '../../include'], name = 'ingen_gui_lv2', target = 'ingen_gui_lv2', install_path = '${LV2DIR}/ingen.lv2/', |