Files
rt-thread/components/drivers/firmware/qemu/SConscript
T
2026-06-15 10:00:57 +08:00

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