14 lines
203 B
Python
14 lines
203 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Split('''
|
||
|
''')
|
||
|
|
||
|
CPPPATH = [ cwd + '/cpu',
|
||
|
cwd + '/include',
|
||
|
]
|
||
|
|
||
|
group = DefineGroup('Platform', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|