4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 23:09:36 +08:00
2014-11-01 09:09:21 +08:00

12 lines
233 B
Python

# 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')