You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
960 B
26 lines
960 B
# RT-Thread building script for component
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
libs = []
|
|
src = Glob('Source/*.c') + Glob('Source/*.cpp')
|
|
cpppath = [cwd + '/Include']
|
|
libpath = [cwd + '/Library']
|
|
|
|
if not GetDepend('BSP_USE_STDDRIVER_SOURCE'):
|
|
if rtconfig.PLATFORM in ['armcc', 'armclang']:
|
|
if GetOption('target') == 'mdk4' and os.path.isfile('./Library/libstddriver_keil4.lib'):
|
|
libs += ['libstddriver_keil4']
|
|
if GetOption('target') == 'mdk5' and os.path.isfile('./Library/libstddriver_keil.lib'):
|
|
libs += ['libstddriver_keil']
|
|
elif rtconfig.PLATFORM in ['gcc'] and os.path.isfile('./Library/libstddriver_gcc.a'):
|
|
libs += ['libstddriver_gcc']
|
|
|
|
if not libs:
|
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = cpppath)
|
|
else:
|
|
src = []
|
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = cpppath, LIBS = libs, LIBPATH = libpath)
|
|
|
|
Return('group')
|
|
|