4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 01:47:22 +08:00

10 lines
199 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
from building import *
src = Glob('*.c')
cwd = GetCurrentDir()
CPPPATH = [cwd]
2013-01-08 22:40:58 +08:00
group = DefineGroup('libdl', src, depend = ['RT_USING_MODULE', 'RT_USING_LIBDL'], CPPPATH = CPPPATH)
Return('group')