mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-19 21:43:17 +08:00
16 lines
292 B
Python
Executable File
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')
|