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')
|