4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 09:03:32 +08:00
woody 7d469384b5
将swm320和swm341整合进synwit (#6290)
* 将swm320和swm341整合进synwit
2022-08-16 12:43:24 -04:00

10 lines
197 B
Python

from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = Glob('*.c') + Glob('*.cpp')
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')