mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04:32 -08:00
13 lines
164 B
Python
13 lines
164 B
Python
Import('target')
|
|
|
|
env = target.Clone()
|
|
env.Append(
|
|
CPPPATH = ['.', 'include'],
|
|
)
|
|
|
|
lib = env.Library('kutil', Glob('*.cpp'))
|
|
|
|
Return('lib')
|
|
|
|
# vim: ft=python et
|