Files
jsix/src/modules/kutil/wscript
2018-05-04 23:50:48 -07:00

15 lines
210 B
Python

def configure(ctx):
pass
def build(bld):
sources = bld.path.ant_glob("**/*.cpp")
bld.stlib(
source = sources,
name = 'kutil',
target = 'kutil',
)
# vim: ft=python et