4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-27 16:00:25 +08:00

12 lines
231 B
Python
Raw Normal View History

from building import *
Import('rtconfig')
src = []
cwd = GetCurrentDir()
CPPPATH = [cwd]
group = []
if rtconfig.CROSS_TOOL == 'msvc':
group = DefineGroup('Compiler', src, depend = [''], CPPPATH = CPPPATH)
Return('group')