mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-27 07:29:32 +00:00
This patch will replace the common/ directory with the spice-common project. It is for now a simple project subdirectory shared with spice-gtk, but the goal is to make it a proper library later on. With this change, the spice-server build is broken. The following commits fix the build, and have been seperated to ease the review. v2 - moves all the generated marshallers to spice-common library - don't attempt to fix windows VS build, which should somehow be splitted with spice-common (or built from tarball only to avoid generation tools/libs deps) v3 - uses libspice-common-client - fix a mutex.h inclusion reported by Alon
76 lines
1.5 KiB
Makefile
76 lines
1.5 KiB
Makefile
NULL =
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/common \
|
|
-I$(top_srcdir)/server \
|
|
-I$(top_srcdir)/server/tests \
|
|
$(COMMON_CFLAGS) \
|
|
$(SMARTCARD_CFLAGS) \
|
|
$(SPICE_NONPKGCONFIG_CFLAGS) \
|
|
$(NULL)
|
|
|
|
if SUPPORT_AUTOMATED_TESTS
|
|
INCLUDES += -DAUTOMATED_TESTS
|
|
endif
|
|
|
|
LDADD = \
|
|
$(top_builddir)/spice-common/common/libspice-common.la \
|
|
$(top_builddir)/server/libspice-server.la \
|
|
$(NULL)
|
|
|
|
COMMON_BASE = \
|
|
basic_event_loop.c \
|
|
basic_event_loop.h \
|
|
test_util.h \
|
|
$(NULL)
|
|
|
|
noinst_PROGRAMS = \
|
|
test_display_no_ssl \
|
|
test_display_streaming \
|
|
test_empty_success \
|
|
test_fail_on_null_core_interface \
|
|
test_just_sockets_no_ssl \
|
|
test_playback \
|
|
test_display_resolution_changes \
|
|
$(NULL)
|
|
|
|
test_display_streaming_SOURCES = \
|
|
$(COMMON_BASE) \
|
|
test_display_base.c \
|
|
test_display_base.h \
|
|
test_display_streaming.c \
|
|
$(NULL)
|
|
|
|
test_display_no_ssl_SOURCES = \
|
|
$(COMMON_BASE) \
|
|
test_display_base.c \
|
|
test_display_base.h \
|
|
test_display_no_ssl.c \
|
|
$(NULL)
|
|
|
|
test_display_resolution_changes_SOURCES = \
|
|
$(COMMON_BASE) \
|
|
test_display_base.c \
|
|
test_display_base.h \
|
|
test_display_resolution_changes.c \
|
|
$(NULL)
|
|
|
|
test_just_sockets_no_ssl_SOURCES = \
|
|
$(COMMON_BASE) \
|
|
test_just_sockets_no_ssl.c \
|
|
$(NULL)
|
|
|
|
test_playback_SOURCES = \
|
|
$(COMMON_BASE) \
|
|
test_playback.c \
|
|
$(NULL)
|
|
|
|
test_empty_success_SOURCES = \
|
|
test_empty_success.c \
|
|
$(NULL)
|
|
|
|
test_fail_on_null_core_interface_SOURCES = \
|
|
test_fail_on_null_core_interface.c \
|
|
$(NULL)
|