4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 04:43:30 +08:00
2018-11-19 09:49:32 +08:00

17 lines
302 B
Python

import rtconfig
Import('RTT_ROOT')
from building import *
# get current directory
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = Split("""
""")
path = [cwd + '/Include',]
group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = path)
Return('group')