13 lines
232 B
Python
13 lines
232 B
Python
from building import *
|
|
import rtconfig
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split('''
|
|
tjpgd.c
|
|
''')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('RTGUI', src, depend = ['RT_USING_GUIENGINE', 'RTGUI_IMAGE_TJPGD'], CPPPATH = CPPPATH)
|
|
|
|
Return('group') |