mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 16:45:35 +00:00
e5dde2ff7e
* gdk/Device.custom : glue to expose object fields. * gdk/DeviceAxis.custom : expand the ToString to incl use: * gdk/EventButton.custom : fix for Axes prop. * gdk/EventMotion.custom : fix for Axes prop. * gdk/Gdk.metadata : hide some accessors on Device. * gdk/Makefile.am : add new custom. * gdk/glue/Makefile.am : add new .c * gdk/glue/makefile.win32 : add new .o * gdk/glue/device.c : ditto. * gtk/InputDialog.custom : glue to expose button fields. * gtk/Makefile.am : add new custom. * gtk/glue/Makefile.am : add new .c * gtk/glue/makefile.win32 : add new .o * gtk/glue/inputdialog.c : ditto. * sample/ScribbleXInput.cs : new sample using extension events. svn path=/trunk/gtk-sharp/; revision=32899
38 lines
780 B
Makefile
38 lines
780 B
Makefile
lib_LTLIBRARIES = libgtksharpglue.la
|
|
|
|
libgtksharpglue_la_SOURCES = \
|
|
adjustment.c \
|
|
button.c \
|
|
cellrenderer.c \
|
|
clipboard.c \
|
|
colorseldialog.c \
|
|
combo.c \
|
|
container.c \
|
|
dialog.c \
|
|
fileselection.c \
|
|
inputdialog.c \
|
|
layout.c \
|
|
nodestore.c \
|
|
object.c \
|
|
paned.c \
|
|
selectiondata.c \
|
|
style.c \
|
|
vmglueheaders.h \
|
|
widget.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgtksharpglue_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgtksharpglue_la_LIBADD = $(GTK_LIBS)
|
|
|
|
INCLUDES = $(GTK_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|