SConscript 302 字节
Newer Older
W
Wayne Lin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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')