summaryrefslogtreecommitdiffstats
path: root/kunittest/example/simple/Makefile.am
blob: 3c88d7fd63b1d9c95c12646d46162dfa5bf465ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
INCLUDES = -I$(top_srcdir) $(all_includes)
METASOURCES = AUTO

check_PROGRAMS = sampletests sampletestsgui

sampletests_SOURCES = main.cpp sampletest.cpp
sampletests_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
sampletests_LDADD = -lkunittest

sampletestsgui_SOURCES = maingui.cpp sampletest.cpp
sampletestsgui_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
# Normally you would write -lkunittestgui here, but since the examples
# are bundled with the library source code itself we don't want to
# have you install the libraries before you can compile the examples.
sampletestsgui_LDADD = ../../libkunittestgui.la

noinst_HEADERS = sampletest.h

TESTS = sampletests

guicheck: sampletestsgui
	kunittest ./sampletestsgui SampleTests