4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 16:33:31 +08:00

16 lines
396 B
Python
Raw Normal View History

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = Split("""
""")
CPPPATH = [cwd + '/StdPeriphDriver/inc', cwd + '/CMSIS/Include']
src += ['Startup/startup_ARMCM0.s']
src += Glob('StdPeriphDriver/*.c')
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
Return('group')