e6f634955d
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2260 bbd45198-f89e-11dd-88c7-29a3b14d5316
13 lines
195 B
Python
13 lines
195 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
src = Split('''
|
|
tjpgd.c
|
|
''')
|
|
|
|
group = DefineGroup('tjpgd', src, depend = ['RTGUI_IMAGE_TJPGD'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|
|
|