4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 08:39:23 +08:00
bernard.xiong 0cea283b5e fix compiling error on mini2440.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@713 bbd45198-f89e-11dd-88c7-29a3b14d5316
2010-05-16 02:02:27 +00:00

34 lines
629 B
Python

Import('env')
src_local = Split("""
demo_view_dc_buffer.c
demo_fnview.c
demo_listview.c
demo_listview_icon.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_listbox.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')