blob: 3fc4fcee7bddcc04db6fac7504398eafab30423f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
INCLUDES = -I$(top_srcdir)/src $(all_includes) -I../libsmpppdclient
METASOURCES = AUTO
check_PROGRAMS = smpppdcstests
smpppdcstests_SOURCES = main.cpp clienttest.cpp
smpppdcstests_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
smpppdcstests_LDADD = ../libsmpppdclient/libsmpppdclient.la -ltdeunittestgui
noinst_HEADERS = clienttest.h
check:
tdeunittest ./smpppdcstests ClientTest
|