4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 06:13:31 +08:00

9 lines
191 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
src = Glob('*.cpp')
CPPPATH = [cwd]
group = DefineGroup('CPP', src, depend=['RT_USING_CPP_WRAPPER'], CPPPATH=CPPPATH)
Return('group')