mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 09:59:24 +08:00
b44d6c4b7b
MDK ok; But GCC failed.
12 lines
216 B
Python
12 lines
216 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
src = Glob('*.c')
|
|
|
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|