mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 07:39:21 +08:00
43f68131ce
FH8620 BSP Copyright (c) 2016 Shanghai Fullhan Microelectronics Co., Ltd. All rights reserved
12 lines
223 B
Python
12 lines
223 B
Python
import rtconfig
|
|
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|