mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 19:45:37 +00:00
414a14d93e
* glib/UnwrappedObject.cs: New class which holds an IntPtr. This is used in Value so that we can retrieve the IntPtr itself for an object property. * glib/Value.cs: Add UnwrappedObject cast operator. * glib/Property.cs: If the retrieved value is an object, and there is no wrapper object, create a new one. svn path=/trunk/gtk-sharp/; revision=5440
17 lines
382 B
Plaintext
Executable file
17 lines
382 B
Plaintext
Executable file
DIRS=generator glib pango atk gdk gtk gnome sample
|
|
ROOT=/cygdrive/$(subst \,/,$(subst :\,/,$(SYSTEMROOT)))
|
|
CSC=$(ROOT)/microsoft.net/framework/v1.0.3705/csc.exe
|
|
|
|
all: windows
|
|
|
|
windows:
|
|
for i in $(DIRS); do \
|
|
(cd $$i; CSC=$(CSC) make -f makefile.win32) || exit 1;\
|
|
done;
|
|
|
|
docs:
|
|
for i in $(DIRS); do \
|
|
(cd $$i; CSC=$(CSC) make -f makefile.win32 docs) || exit 1;\
|
|
done;
|
|
|