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.
28 lines
1.0 KiB
28 lines
1.0 KiB
# RT-Thread building script for component
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
libs = []
|
|
src = Glob('*src/*.c') + Glob('src/*.cpp')
|
|
cpppath = [cwd + '/inc']
|
|
libpath = [cwd + '/lib']
|
|
|
|
if not GetDepend('BSP_USE_STDDRIVER_SOURCE'):
|
|
if rtconfig.PLATFORM in ['armcc', 'armclang']:
|
|
if GetOption('target') == 'mdk5' and os.path.isfile('./lib/libstddriver_keil.lib'):
|
|
libs += ['libstddriver_keil']
|
|
elif GetOption('target') == 'mdk4' and os.path.isfile('./lib/libstddriver_keil4.lib'):
|
|
libs += ['libstddriver_keil4']
|
|
elif rtconfig.PLATFORM in ['gcc'] and os.path.isfile('./lib/libstddriver_gcc.a'):
|
|
libs += ['libstddriver_gcc']
|
|
elif os.path.isfile('./lib/libstddriver_iar.a'):
|
|
libs += ['libstddriver_iar']
|
|
|
|
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')
|
|
|