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.
28 lines
1.0 KiB
28 lines
1.0 KiB
INCLUDES = $(all_includes)
|
|
METASOURCES = AUTO
|
|
|
|
lib_LTLIBRARIES = libkunittest.la
|
|
libkunittest_la_SOURCES = runner.cpp tester.cpp
|
|
libkunittest_la_LDFLAGS = $(all_libraries) $(KDE_RPATH) -version-info 1:0:0
|
|
libkunittest_la_LIBADD = $(LIB_TDECORE) $(LIB_QT)
|
|
|
|
libkunittestinclude_HEADERS = runner.h tester.h module.h
|
|
libkunittestincludedir = $(includedir)/kunittest
|
|
|
|
bin_PROGRAMS = kunittestmodrunner
|
|
kunittestmodrunner_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
|
|
kunittestmodrunner_LDADD = libkunittest.la $(LIB_TDECORE)
|
|
kunittestmodrunner_SOURCES = modrunner.cpp
|
|
|
|
# The check_ target makes sure we don't install the modules,
|
|
# $(KDE_CHECK_PLUGIN) assures a shared library is created.
|
|
check_LTLIBRARIES = kunittest_samplemodule.la
|
|
kunittest_samplemodule_la_SOURCES = samplemodule.cpp
|
|
kunittest_samplemodule_la_LIBADD = libkunittest.la
|
|
kunittest_samplemodule_la_LDFLAGS = -module $(KDE_CHECK_PLUGIN) $(all_libraries)
|
|
|
|
check-local:
|
|
./kunittestmodrunner
|
|
|
|
include ../admin/Doxyfile.am
|