mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-20 17:03:30 +08:00
10 lines
193 B
Python
10 lines
193 B
Python
|
Import('RTT_ROOT')
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = []
|
||
|
CPPPATH = [cwd + '/inc']
|
||
|
group = DefineGroup('numicro_common', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|