13 lines
269 B
Python
13 lines
269 B
Python
# RT-Thread building script for gui
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
CPPPATH = [ cwd,
|
|
cwd + '/rtgui',
|
|
cwd + '/rtgui/widgets']
|
|
|
|
group = DefineGroup('GuiEngine', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group') |