smart-green-house/rtt-uart-nb/rt-thread/components/cplusplus/SConscript

13 lines
248 B
Python
Raw Permalink Normal View History

2023-10-28 18:00:47 +08:00
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.cpp') + Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('CPlusPlus', src, depend = ['RT_USING_CPLUSPLUS'], CPPPATH = CPPPATH)
Return('group')