mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 08:33:30 +08:00
14 lines
215 B
Python
14 lines
215 B
Python
|
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')
|