mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-10 01:11:10 +08:00
1d6347796d
* HC32F460 supported Co-authored-by: JamieTx <yangjp24@126.com> Co-authored-by: Jamie <48308473+JamieTx@users.noreply.github.com>
12 lines
258 B
Python
12 lines
258 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = os.path.join(str(Dir('#')), 'applications')
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|