4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-02 22:04:34 +08:00
2024-04-12 15:57:06 +08:00

12 lines
237 B
Python

# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd , cwd + '/zynqmp']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')