You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
888 B
23 lines
888 B
15 years ago
|
INCLUDES = -I$(top_srcdir) $(all_includes)
|
||
|
METASOURCES = AUTO
|
||
|
|
||
|
check_PROGRAMS = sampletests sampletestsgui
|
||
|
|
||
|
sampletests_SOURCES = main.cpp sampletest.cpp
|
||
12 years ago
|
sampletests_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||
|
sampletests_LDADD = -ltdeunittest
|
||
15 years ago
|
|
||
|
sampletestsgui_SOURCES = maingui.cpp sampletest.cpp
|
||
12 years ago
|
sampletestsgui_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
|
||
|
# Normally you would write -ltdeunittestgui here, but since the examples
|
||
15 years ago
|
# are bundled with the library source code itself we don't want to
|
||
|
# have you install the libraries before you can compile the examples.
|
||
12 years ago
|
sampletestsgui_LDADD = ../../libtdeunittestgui.la
|
||
15 years ago
|
|
||
|
noinst_HEADERS = sampletest.h
|
||
|
|
||
|
TESTS = sampletests
|
||
|
|
||
|
guicheck: sampletestsgui
|
||
12 years ago
|
tdeunittest ./sampletestsgui SampleTests
|