mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
15 lines
366 B
Python
15 lines
366 B
Python
|
|
from building import *
|
||
|
|
import rtconfig
|
||
|
|
|
||
|
|
# get current directory
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
# The set of source files associated with this SConscript file.
|
||
|
|
src = Glob('*.c')
|
||
|
|
|
||
|
|
path = [cwd + '/']
|
||
|
|
|
||
|
|
LOCAL_CCFLAGS = ''
|
||
|
|
|
||
|
|
group = DefineGroup('rtt_auto_cmd', src, depend = ['LPKG_USING_RTT_AUTO_EXE_CMD'], CPPPATH = path, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
|
||
|
|
|
||
|
|
Return('group')
|