mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-28 00:28:38 +08:00
16 lines
274 B
Python
16 lines
274 B
Python
from building import *
|
|
|
|
group = []
|
|
|
|
if not GetDepend(['RT_FIRMWARE_QEMU_FW_CFG']):
|
|
Return('group')
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../../include']
|
|
|
|
src = Glob('*.c')
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|