update GUI examples.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@344 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong
2010-01-27 09:42:19 +00:00
parent 646db738d5
commit 49868fc5e4
9 changed files with 380 additions and 36 deletions

28
examples/gui/SConscript Normal file
View File

@@ -0,0 +1,28 @@
Import('env')
src_local = Split("""
demo_fnview.c
demo_listview.c
demo_panel_single.c
demo_view.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')