You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
543 B
Python
20 lines
543 B
Python
# -*- mode: python -*-
|
|
|
|
subdirs = [
|
|
# start with libcxx, other c++ libs depend on it
|
|
'libcxx',
|
|
'boost', 'doctest', 'tracy',
|
|
]
|
|
|
|
def options(ctx):
|
|
ctx.recurse_subdirs('options', subdirs)
|
|
ctx.recurse('.', name='options', wscript='wscript_lua', once=False)
|
|
|
|
def configure(ctx):
|
|
ctx.recurse_subdirs('configure', subdirs)
|
|
ctx.recurse('.', name='configure', wscript='wscript_lua', once=False)
|
|
|
|
def build(ctx):
|
|
ctx.recurse_subdirs('build', subdirs)
|
|
ctx.recurse('.', name='build', wscript='wscript_lua', once=False)
|