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
974 B
Python
20 lines
974 B
Python
# -*- python -*-
|
|
|
|
def options(ctx):
|
|
ctx.recurse('.', name='options', wscript='wscript_capnproto', once=False)
|
|
ctx.recurse('.', name='options', wscript='wscript_mujs', once=False)
|
|
ctx.recurse('.', name='options', wscript='wscript_tinyxml', once=False)
|
|
ctx.recurse('.', name='options', wscript='wscript_zlib', once=False)
|
|
|
|
def configure(ctx):
|
|
ctx.recurse('.', name='configure', wscript='wscript_capnproto', once=False)
|
|
ctx.recurse('.', name='configure', wscript='wscript_mujs', once=False)
|
|
ctx.recurse('.', name='configure', wscript='wscript_tinyxml', once=False)
|
|
ctx.recurse('.', name='configure', wscript='wscript_zlib', once=False)
|
|
|
|
def build(ctx):
|
|
ctx.recurse('.', name='build', wscript='wscript_capnproto', once=False)
|
|
ctx.recurse('.', name='build', wscript='wscript_mujs', once=False)
|
|
ctx.recurse('.', name='build', wscript='wscript_tinyxml', once=False)
|
|
ctx.recurse('.', name='build', wscript='wscript_zlib', once=False)
|