mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-06-22 18:44:34 +08:00
50998f4e43
* [building] rename the group name: LIBADT to Utilities.
11 lines
218 B
Python
11 lines
218 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
if GetDepend("RT_USING_SMP"):
|
|
src += Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|