15 lines
250 B
Python
15 lines
250 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
src = Split('''
|
|
tjpgd.c
|
|
''')
|
|
|
|
CPPPATH = [RTT_ROOT + '/components/external/tjpgd1a']
|
|
|
|
group = DefineGroup('tjpgd', src, depend = ['RTGUI_IMAGE_TJPGD'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|
|
|