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