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