4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 03:03:32 +08:00
2020-12-19 16:49:11 +08: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')