mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 21:03:30 +08:00
1022cfd3a7
Signed-off-by: zyh <lymz@foxmail.com>
10 lines
207 B
Python
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')
|