blob: 14d2a49b5884ecb86277f2154b80085eba6b9f55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
METASOURCES = AUTO
# Code
noinst_LTLIBRARIES = libsrvloc.la
libsrvloc_la_SOURCES = kserviceregistry.cpp uuid.cpp \
kinetinterface.cpp kinetinterfacewatcher.cpp \
getifaddrs.cpp
libsrvloc_la_LIBADD = $(LIB_QT) $(LIB_TDECORE) $(LIB_SLP)
libsrvloc_la_LDFLAGS = $(all_libraries) -no-undefined
noinst_HEADERS = kserviceregistry.h uuid.h \
getifaddrs.h kinetinterface.h kinetinterfacewatcher.h
# set the include path for X, qt and KDE
INCLUDES= $(all_includes)
|