rt-thread-stm32f072/rt-thread/components/libc/compilers/common/extension/fcntl/msvc/SConscript

12 lines
231 B
Python
Raw Normal View History

2022-10-30 15:41:02 +08:00
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')