mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-22 00:39:18 +08:00
11 lines
200 B
Python
11 lines
200 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Split('''
|
||
|
startup_LPC54114_cm4.s
|
||
|
''')
|
||
|
|
||
|
group = DefineGroup('Libraries', src, depend = [''], LIBS=['iar_lib_power'], LIBPATH=[cwd])
|
||
|
|
||
|
Return('group')
|