1from building import * 2 3cwd = GetCurrentDir() 4src = Glob('*.cpp') 5CPPPATH = [cwd] 6group = DefineGroup('CPP', src, depend=['RT_USING_CPP_WRAPPER'], CPPPATH=CPPPATH) 7 8Return('group') 9