d224dd1cbc
* gtk/StatusIcon.custom : obsolete overload for backcompat on GetGeometry, and custom PresentMenu method to invoke new glue. * gtk/glue/statusicon.c : glue method to connect to gtk_menu_popup without having to go across the native/managed boundary multiple times using gtk_status_icon_position_menu wrapper. [Fixes #79500] svn path=/trunk/gtk-sharp/; revision=72236
34 lines
795 B
Makefile
34 lines
795 B
Makefile
lib_LTLIBRARIES = libgtksharpglue-2.la
|
|
|
|
libgtksharpglue_2_la_SOURCES = \
|
|
adjustment.c \
|
|
cellrenderer.c \
|
|
clipboard.c \
|
|
colorseldialog.c \
|
|
container.c \
|
|
nodestore.c \
|
|
object.c \
|
|
selectiondata.c \
|
|
statusicon.c \
|
|
style.c \
|
|
targetlist.c \
|
|
vmglueheaders.h \
|
|
widget.c
|
|
|
|
nodist_libgtksharpglue_2_la_SOURCES = generated.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgtksharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgtksharpglue_2_la_LIBADD = $(GTK_LIBS)
|
|
|
|
INCLUDES = $(GTK_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_2_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|