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 /wscript | |
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 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -310,7 +310,7 @@ def build(bld): bld(features = 'c cxx cxxprogram', source = 'src/ingen/ingen.cpp', target = 'ingen', - includes = ['.'], + includes = ['include'], use = 'libingen', uselib = 'SERD SORD SRATOM RAUL LILV LV2', install_path = '${BINDIR}') @@ -321,7 +321,7 @@ def build(bld): bld(features = 'cxx cxxprogram', source = 'tests/%s.cpp' % i, target = 'tests/%s' % i, - includes = ['.'], + includes = ['include'], use = 'libingen', uselib = 'SERD SORD SRATOM RAUL LILV LV2', install_path = '', |