mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 04:23:44 +08:00
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')
|