mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-14 19:09:24 +08:00
14 lines
231 B
Python
14 lines
231 B
Python
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
src = Glob('*.c')
|
||
|
|
||
|
path = [cwd, cwd + '/..']
|
||
|
|
||
|
group = DefineGroup('Platform', src, depend = ['CONFIG_PLAT_V2'], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|