mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 12:51:20 +08:00
13 lines
234 B
Python
13 lines
234 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split('''
|
|
lodepng.c
|
|
''')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('RTGUI', src, depend = ['RT_USING_RTGUI', 'RTGUI_IMAGE_LODEPNG', 'RT_USING_LIBC'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|