2013-01-08 22:40:58 +08:00
|
|
|
from building import *
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
2023-01-09 10:14:23 +08:00
|
|
|
src = Glob('*.c')
|
2013-01-08 22:40:58 +08:00
|
|
|
CPPPATH = [cwd + '/../include']
|
2015-03-31 14:17:49 +08:00
|
|
|
|
2015-04-04 02:03:17 +08:00
|
|
|
if not GetDepend('RT_USING_HEAP'):
|
2015-03-31 14:17:49 +08:00
|
|
|
SrcRemove(src, 'dataqueue.c')
|
|
|
|
SrcRemove(src, 'pipe.c')
|
|
|
|
|
2024-05-08 09:25:57 +08:00
|
|
|
if not GetDepend('RT_USING_SMP'):
|
|
|
|
SrcRemove(src, 'completion_mp.c')
|
|
|
|
else:
|
|
|
|
SrcRemove(src, 'completion_up.c')
|
|
|
|
|
2024-02-23 17:49:15 +08:00
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_DEVICE_IPC'], CPPPATH = CPPPATH, LOCAL_CPPDEFINES=['__RT_IPC_SOURCE__'])
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
Return('group')
|