mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-29 07:17:08 +00:00
* WidgetViewer.cs: Fixed InvalidCastException. * TestStatusbar.cs: Made it work. Sigh, I dunno why I got it wrong the first time. * TestMenus.cs: Use null instead of new SList (IntPtr.Zero); and remove the unnecessary try... catch block. svn path=/trunk/gtk-sharp/; revision=5889
11 lines
301 B
Makefile
11 lines
301 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.csTestFlipping.cs TestMenus.cs \
|
|
WidgetViewer.cs
|
|
clean:
|
|
rm -f *.exe *~
|