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