4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 21:03:30 +08:00
zyh 1022cfd3a7 [BSP][K210]Add LCD Camera driver
Signed-off-by: zyh <lymz@foxmail.com>
2019-03-12 17:29:38 +08:00

10 lines
207 B
Python

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