mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-05 02:14:35 +08:00
15 lines
272 B
Python
15 lines
272 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
src = Split('''
|
|
tjpgd.c
|
|
''')
|
|
|
|
CPPPATH = [RTT_ROOT + '/components/external/tjpgd1a']
|
|
|
|
group = DefineGroup('RTGUI', src, depend = ['RT_USING_GUIENGINE', 'RTGUI_IMAGE_TJPGD'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|
|
|