4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-11 02:41:08 +08:00

19 lines
328 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
# add general drivers
src = Split('''
board.c
CubeMX_Config/Src/stm32l4xx_hal_msp.c
''')
path = [cwd]
path += [cwd + '/CubeMX_Config/Inc']
CPPDEFINES = ['STM32L432xx']
2024-05-06 01:09:15 -04:00
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
Return('group')