mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-22 00:03:02 +08:00
10 lines
205 B
Python
Executable File
10 lines
205 B
Python
Executable File
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = list()
|
|
CPPPATH = [cwd]
|
|
group = []
|
|
|
|
group = DefineGroup('Utilities', src, depend = ['RT_USING_ADT_HASHMAP'], CPPPATH = CPPPATH)
|
|
Return('group')
|