mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 23:09:36 +08:00
12 lines
233 B
Python
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')
|