4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-21 06:47:41 +08:00

12 lines
233 B
Python
Raw Normal View History

2014-11-01 09:09:21 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.cpp')
CPPPATH = [cwd]
group = DefineGroup('CPlusPlus', src, depend = ['RT_USING_CPLUSPLUS'], CPPPATH = CPPPATH)
Return('group')