mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-05-18 08:13:39 +08:00
50998f4e43
* [building] rename the group name: LIBADT to Utilities.
10 lines
206 B
Python
Executable File
10 lines
206 B
Python
Executable File
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
group = []
|
|
|
|
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_AVL'], CPPPATH = CPPPATH)
|
|
Return('group')
|