4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 06:19:24 +08:00
bernard.xiong 1cbde10e57 add buffer animation demo.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@691 bbd45198-f89e-11dd-88c7-29a3b14d5316
2010-05-03 23:27:57 +00:00

32 lines
586 B
Python

Import('env')
src_local = Split("""
demo_view_dc_buffer.c
demo_fnview.c
demo_listview.c
demo_panel_single.c
demo_view.c
demo_view_animation.c
demo_view_buffer_animation.c
demo_view_box.c
demo_view_button.c
demo_view_checkbox.c
demo_view_dc.c
demo_view_image.c
demo_view_label.c
demo_view_mywidget.c
demo_view_progressbar.c
demo_view_radiobox.c
demo_view_slider.c
demo_view_textbox.c
demo_view_window.c
demo_workbench.c
gui_init.c
mywidget.c
""")
# The set of source files associated with this SConscript file.
obj = env.Object(src_local)
Return('obj')