936e25b0c0
* TestCombo.cs: New file, to show basic usage of a ComboBox. It's missing some functionality, however. Currently, it's not possible to append to the list of strings in the pop-down. svn path=/trunk/gtk-sharp/; revision=12252
11 lines
332 B
Makefile
11 lines
332 B
Makefile
MCS=mcs
|
|
|
|
all:
|
|
$(MCS) -o WidgetViewer.exe -r glib-sharp -r gdk-sharp -r gtk-sharp \
|
|
TestCheckButton.cs TestColorSelection.cs TestFileSelection.cs \
|
|
TestRadioButton.cs TestRange.cs TestStatusbar.cs TestToolbar.cs \
|
|
TestDialog.cs TestFlipping.cs TestMenus.cs TestSizeGroup.cs \
|
|
TestCombo.cs \
|
|
WidgetViewer.cs
|
|
clean:
|
|
rm -f *.exe
|