mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/win32-vd_agent
synced 2026-01-08 12:38:25 +00:00
This patch wasn't sent for review, and wasn't meant to be pushed
as part of the mingw series
This reverts commit 04e53efb31.
48 lines
1.0 KiB
Makefile
48 lines
1.0 KiB
Makefile
INCLUDES = \
|
|
-I$(top_srcdir)/common \
|
|
$(SPICE_PROTOCOL_CFLAGS)
|
|
|
|
bin_PROGRAMS = vdagent vdservice
|
|
|
|
vdagent_SOURCES = \
|
|
common/vdcommon.h \
|
|
common/vdlog.cpp \
|
|
common/vdlog.h \
|
|
vdagent/desktop_layout.cpp \
|
|
vdagent/desktop_layout.h \
|
|
vdagent/display_setting.cpp \
|
|
vdagent/display_setting.h \
|
|
vdagent/vdagent.cpp
|
|
|
|
vdservice_SOURCES = \
|
|
common/stdint.h \
|
|
common/vdcommon.h \
|
|
common/vdlog.cpp \
|
|
common/vdlog.h \
|
|
vdservice/vdservice.cpp \
|
|
vdservice/pci_vdi_port.cpp \
|
|
vdservice/pci_vdi_port.h \
|
|
vdservice/vdi_port.h \
|
|
vdservice/vdi_port.cpp \
|
|
vdservice/virtio_vdi_port.h \
|
|
vdservice/virtio_vdi_port.cpp
|
|
|
|
# -lversion is needed for the GetFileVersion* API which is used by
|
|
# vdlog.cpp
|
|
LIBS = -lversion
|
|
vdservice_LDADD = -lwtsapi32
|
|
vdagent_LDADD = $(CXIMAGE_LIBS)
|
|
vdagent_CXXFLAGS = $(CXIMAGE_CFLAGS)
|
|
|
|
EXTRA_DIST = \
|
|
tests/clipboard.py \
|
|
vdagent.sln \
|
|
vdagent/resource.h \
|
|
vdagent/vdagent.rc \
|
|
vdagent/vdagent.vcproj \
|
|
vdservice/vdservice.rc \
|
|
vdservice/vdservice.vcproj
|
|
|
|
|
|
-include $(top_srcdir)/git.mk
|