aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-20 23:08:57 +0000
committerDavid Robillard <d@drobilla.net>2011-11-20 23:08:57 +0000
commit725d4a404b838da6b67d9da66228a1125bddef57 (patch)
treea1daab3d767c85b1b67ff3a9eb60d54721b2e5fc /wscript
parent5ae0165d6d0420e95e22c1451e319b9e83398c28 (diff)
downloadlv2-725d4a404b838da6b67d9da66228a1125bddef57.tar.xz
Lay out repository structure to match include and URI structure.
Treat lv2core like all the other specifications in gendoc.py.
Diffstat (limited to 'wscript')
-rw-r--r--wscript14
1 files changed, 7 insertions, 7 deletions
diff --git a/wscript b/wscript
index f451a7e..7cc8f32 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 ['core.lv2']:
+ for i in ['ns/lv2core']:
opt.recurse(i)
def configure(conf):
@@ -39,9 +39,9 @@ def configure(conf):
conf.env.append_unique('CFLAGS', '-std=c99')
- subdirs = ['core.lv2']
- subdirs += glob.glob('ext/*.lv2/')
- subdirs += glob.glob('extensions/*.lv2/')
+ subdirs = ['ns/lv2core']
+ subdirs += glob.glob('ns/ext/*/')
+ subdirs += glob.glob('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 (['core.lv2/lv2.h']
- + glob.glob('ext/*/*.h')
- + glob.glob('extensions/*/*.h')):
+ for i in (['ns/lv2core/lv2.h']
+ + glob.glob('ns/ext/*/*.h')
+ + glob.glob('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)