1# RT-Thread building script for component 2 3import os 4import rtconfig 5from building import * 6 7cwd = GetCurrentDir() 8 9# add the general drivers. 10src = ['board.c'] 11src += ['mm32_msp.c'] 12 13CPPPATH = [cwd] 14 15 16group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH) 17 18Return('group') 19