mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 11:15:33 +00:00
2002-05-13 Joe Shaw <joe@assbarn.com>
* sample/Makefile.in: Use -L compiler flags and specify all of the assemblies to link against. svn path=/trunk/gtk-sharp/; revision=4587
This commit is contained in:
parent
ba6aa935d4
commit
07801f675c
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2002-05-13 Joe Shaw <joe@assbarn.com>
|
||||||
|
|
||||||
|
* sample/Makefile.in: Use -L compiler flags and specify all of the
|
||||||
|
assemblies to link against.
|
||||||
|
|
||||||
|
2002-05-13 Joe Shaw <joe@assbarn.com>
|
||||||
|
|
||||||
|
* gtk/Makefile.in: Add the System.Drawing assembly to the compiler
|
||||||
|
command-line.
|
||||||
|
|
||||||
2002-05-08 Joe Shaw <joe@assbarn.com>
|
2002-05-08 Joe Shaw <joe@assbarn.com>
|
||||||
|
|
||||||
* generator/ObjectGen.cs (GenProperty): And uncomment it out because
|
* generator/ObjectGen.cs (GenProperty): And uncomment it out because
|
||||||
|
|
|
@ -9,10 +9,10 @@ windows:
|
||||||
linux: gtk-hello-world.exe button.exe
|
linux: gtk-hello-world.exe button.exe
|
||||||
|
|
||||||
gtk-hello-world.exe: HelloWorld.cs
|
gtk-hello-world.exe: HelloWorld.cs
|
||||||
$(MCS) --unsafe -o gtk-hello-world.exe -r ../glib/glib-sharp.dll -r ../gtk/gtk-sharp.dll -r ../gdk/gdk-sharp.dll 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
|
||||||
|
|
||||||
button.exe: ButtonApp.cs
|
button.exe: ButtonApp.cs
|
||||||
$(MCS) --unsafe -o button.exe -r ../glib/glib-sharp.dll -r ../gtk/gtk-sharp.dll 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 ButtonApp.cs
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.exe
|
rm -f *.exe
|
||||||
|
|
Loading…
Reference in a new issue