4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 20:03:29 +08:00

10 lines
199 B
Python

from building import *
src = Glob('*.c')
cwd = GetCurrentDir()
CPPPATH = [cwd]
group = DefineGroup('libdl', src, depend = ['RT_USING_MODULE', 'RT_USING_LIBDL'], CPPPATH = CPPPATH)
Return('group')