aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-21 01:36:00 +0000
committerDavid Robillard <d@drobilla.net>2011-11-21 01:36:00 +0000
commiteb43c8896480114b224755e824fae2e2f7485256 (patch)
tree26e91bd8dc6421d2296a33991e90f7dcb546b079 /wscript
parentdf79255ccef7fb5d091e9d4e52f3c46545b53282 (diff)
downloadlv2-eb43c8896480114b224755e824fae2e2f7485256.tar.xz
Move ns to lv2/ns so repository top level can be used as an include dir directly.
Diffstat (limited to 'wscript')
-rw-r--r--wscript14
1 files changed, 7 insertions, 7 deletions
diff --git a/wscript b/wscript
index 7cc8f32..5403b8a 100644
--- a/wscript
+++ b/wscript
@@ -29,7 +29,7 @@ def options(opt):
opt.add_option('--experimental', action='store_true', default=False,
dest='experimental',
help='Install unreleased experimental extensions')
- for i in ['ns/lv2core']:
+ for i in ['lv2/ns/lv2core']:
opt.recurse(i)
def configure(conf):
@@ -39,9 +39,9 @@ def configure(conf):
conf.env.append_unique('CFLAGS', '-std=c99')
- subdirs = ['ns/lv2core']
- subdirs += glob.glob('ns/ext/*/')
- subdirs += glob.glob('ns/extensions/*/')
+ subdirs = ['lv2/ns/lv2core']
+ subdirs += glob.glob('lv2/ns/ext/*/')
+ subdirs += glob.glob('lv2/ns/extensions/*/')
for i in subdirs:
conf.recurse(i)
@@ -86,7 +86,7 @@ def release(ctx):
Logs.error('Error building %s release' % name)
def lint(ctx):
- for i in (['ns/lv2core/lv2.h']
- + glob.glob('ns/ext/*/*.h')
- + glob.glob('ns/extensions/*/*.h')):
+ for i in (['lv2/ns/lv2core/lv2.h']
+ + glob.glob('lv2/ns/ext/*/*.h')
+ + glob.glob('lv2/ns/extensions/*/*.h')):
subprocess.call('cpplint.py --filter=+whitespace/comments,-whitespace/tab,-whitespace/braces,-whitespace/labels,-whitespace/blank_line,-build/header_guard,-readability/casting,-readability/todo,-build/include ' + i, shell=True)