c3f0850297
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2228 bbd45198-f89e-11dd-88c7-29a3b14d5316
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')
|
|
|