summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 01:58:44 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:58:44 +0200
commitb5df20208086f2e8a895478c982c3d845b8191af (patch)
tree7ed055017ed8c998f8b3ee3b792be1f953859d1e /wscript
parentd0579bbcd2142577ba3a18650cc9cadda8fafd84 (diff)
downloadingen-b5df20208086f2e8a895478c982c3d845b8191af.tar.gz
ingen-b5df20208086f2e8a895478c982c3d845b8191af.tar.bz2
ingen-b5df20208086f2e8a895478c982c3d845b8191af.zip
Fix build as a subproject
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 56a1a964..707fc353 100644
--- a/wscript
+++ b/wscript
@@ -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 = '',