4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 14:14:50 +08:00
2022-08-03 22:48:13 -04:00

10 lines
208 B
Python

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