[C++] fix the ctors initialization issue

This commit is contained in:
Bernard Xiong
2014-11-01 14:12:58 +08:00
parent 38be10cf89
commit 1974bec8bf
4 changed files with 68 additions and 3 deletions

View File

@@ -3,9 +3,9 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.cpp')
src = Glob('*.cpp') + Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('CPlusPlus', src, depend = ['RT_USING_CPLUSPLUS'], CPPPATH = CPPPATH)
group = DefineGroup('CPlusPlus', src, depend = ['RT_USING_CPLUSPLUS', 'RT_USING_LIBC'], CPPPATH = CPPPATH)
Return('group')