4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-01 13:00:27 +08:00
2023-12-19 18:00:00 +08:00

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')