4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-21 08:33:30 +08:00

14 lines
215 B
Python
Raw Normal View History

import os
from building import *
src = []
objs = []
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = Glob('*.c')
objs = DefineGroup('Drivers', src, depend = ['BSP_USING_MIPI_LCD'], CPPPATH = CPPPATH)
Return('objs')