mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
15 lines
210 B
Python
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
|