mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-gtk
synced 2026-01-01 04:11:24 +00:00
So we can see all available options with spicy --help-gst and set them as command line argument. Signed-off-by: Victor Toso <victortoso@redhat.com> Acked-by: Pavel Grunt <pgrunt@redhat.com>
76 lines
1.4 KiB
Makefile
76 lines
1.4 KiB
Makefile
bin_PROGRAMS = spicy-stats spicy-screenshot
|
|
|
|
TOOLS_CPPFLAGS = \
|
|
-DSPICE_COMPILATION \
|
|
-I$(top_builddir)/src \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/src \
|
|
$(COMMON_CFLAGS) \
|
|
$(GLIB2_CFLAGS) \
|
|
$(GIO_CFLAGS) \
|
|
$(SMARTCARD_CFLAGS) \
|
|
$(SPICE_CFLAGS) \
|
|
$(NULL)
|
|
|
|
if WITH_GTK
|
|
bin_PROGRAMS += spicy
|
|
TOOLS_CPPFLAGS += $(GTK_CFLAGS)
|
|
endif
|
|
|
|
spicy_SOURCES = \
|
|
spicy.c \
|
|
spicy-connect.h \
|
|
spicy-connect.c \
|
|
spice-cmdline.h \
|
|
spice-cmdline.c \
|
|
$(NULL)
|
|
|
|
spicy_LDADD = \
|
|
$(top_builddir)/src/libspice-client-gtk-3.0.la \
|
|
$(top_builddir)/src/libspice-client-glib-2.0.la \
|
|
$(GTK_LIBS) \
|
|
$(GSTAUDIO_LIBS) \
|
|
$(GSTVIDEO_LIBS) \
|
|
$(NULL)
|
|
|
|
# FIXME: GtkAction and lots of GtkUIManager APIs are deprecated
|
|
spicy_CPPFLAGS = \
|
|
$(TOOLS_CPPFLAGS) \
|
|
$(GSTAUDIO_CFLAGS) \
|
|
$(GSTVIDEO_CFLAGS) \
|
|
-DSPICE_DISABLE_DEPRECATED \
|
|
-Wno-deprecated-declarations \
|
|
$(NULL)
|
|
|
|
spicy_screenshot_SOURCES = \
|
|
spicy-screenshot.c \
|
|
spice-cmdline.h \
|
|
spice-cmdline.c \
|
|
$(NULL)
|
|
|
|
spicy_screenshot_LDADD = \
|
|
$(top_builddir)/src/libspice-client-glib-2.0.la \
|
|
$(GOBJECT2_LIBS) \
|
|
$(NULL)
|
|
|
|
spicy_screenshot_CPPFLAGS = \
|
|
$(TOOLS_CPPFLAGS) \
|
|
$(NULL)
|
|
|
|
spicy_stats_SOURCES = \
|
|
spicy-stats.c \
|
|
spice-cmdline.h \
|
|
spice-cmdline.c \
|
|
$(NULL)
|
|
|
|
spicy_stats_LDADD = \
|
|
$(top_builddir)/src/libspice-client-glib-2.0.la \
|
|
$(GOBJECT2_LIBS) \
|
|
$(NULL)
|
|
|
|
spicy_stats_CPPFLAGS = \
|
|
$(TOOLS_CPPFLAGS) \
|
|
$(NULL)
|
|
|
|
-include $(top_srcdir)/git.mk
|