Files
rt-thread/components/drivers/rpmsg/SConscript
T
2026-05-11 14:09:04 +08:00

16 lines
292 B
Python
Executable File

from building import *
group = []
if not GetDepend(['RT_USING_RPMSG']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include']
src = ['rpmsg.c', 'rpmsg_char.c', 'rpmsg_ns.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')