mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-01 13:00:27 +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')
|