mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-09 10:41:21 +08:00
13 lines
201 B
Python
13 lines
201 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Split('''
|
||
|
lodepng.c
|
||
|
''')
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('lodepng', src, depend = ['RTGUI_IMAGE_LODEPNG'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|