mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-10 21:35:27 +00:00
2002-05-29 Mike Kestner <mkestner@speakeasy.net>
* generator/CallbackGen.cs : Fix build breaker from refactoring. * sample/Makefile.in : Build the menu sample on linux. svn path=/trunk/gtk-sharp/; revision=5001
This commit is contained in:
parent
177ce885ad
commit
c1be55f103
|
@ -1,3 +1,8 @@
|
|||
2002-05-29 Mike Kestner <mkestner@speakeasy.net>
|
||||
|
||||
* generator/CallbackGen.cs : Fix build breaker from refactoring.
|
||||
* sample/Makefile.in : Build the menu sample on linux.
|
||||
|
||||
2002-05-28 Mike Kestner <mkestner@speakeasy.net>
|
||||
|
||||
* makefile : add separate targets for native and platform
|
||||
|
|
|
@ -55,9 +55,9 @@ namespace GtkSharp.Generation {
|
|||
}
|
||||
|
||||
if ((parms != null) && !parms.Validate ()) {
|
||||
Console.WriteLine(" in callback " + CName);
|
||||
Console.WriteLine(" in callback " + CName + " **** Stubbing it out ****");
|
||||
Statistics.ThrottledCount++;
|
||||
return;
|
||||
parms = null;
|
||||
}
|
||||
|
||||
StreamWriter sw = CreateWriter ();
|
||||
|
|
|
@ -6,7 +6,7 @@ windows:
|
|||
$(CSC) /unsafe /out:gtk-hello-world.exe /r:../glib/glib-sharp.dll /r:../gtk/gtk-sharp.dll /r:../gdk/gdk-sharp.dll HelloWorld.cs
|
||||
$(CSC) /unsafe /out:button.exe /r:../glib/glib-sharp.dll /r:../gtk/gtk-sharp.dll ButtonApp.cs
|
||||
|
||||
linux: gtk-hello-world.exe button.exe
|
||||
linux: gtk-hello-world.exe button.exe menu.exe
|
||||
|
||||
gtk-hello-world.exe: HelloWorld.cs
|
||||
$(MCS) --unsafe -o gtk-hello-world.exe -L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk -r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp HelloWorld.cs
|
||||
|
@ -14,6 +14,9 @@ gtk-hello-world.exe: HelloWorld.cs
|
|||
button.exe: ButtonApp.cs
|
||||
$(MCS) --unsafe -o button.exe -L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk -r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp -r System.Drawing ButtonApp.cs
|
||||
|
||||
menu.exe: Menu.cs
|
||||
$(MCS) --unsafe -o menu.exe -L ../glib -L ../pango -L ../atk -L ../gdk -L ../gtk -r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gtk-sharp -r System.Drawing Menu.cs
|
||||
|
||||
clean:
|
||||
rm -f *.exe
|
||||
|
||||
|
|
Loading…
Reference in a new issue