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