mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-05 08:04:34 +08:00
6ce4a87492
* [fcntl] create new fcntl.h file for vs
12 lines
251 B
Python
12 lines
251 B
Python
from building import *
|
|
Import('rtconfig')
|
|
|
|
src = []
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
group = []
|
|
|
|
if rtconfig.PLATFORM in ['armcc', 'armclang', 'iar']:
|
|
group = DefineGroup('Compiler', src, depend = [''], CPPPATH = CPPPATH)
|
|
Return('group')
|