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.
30 lines
1.2 KiB
30 lines
1.2 KiB
AM_CPPFLAGS = -I$(srcdir)/../ $(KOFFICE_INCLUDES) $(all_includes)
|
|
|
|
INCLUDES = $(KOFFICE_INCLUDES) $(all_includes)
|
|
|
|
# The check_ target makes sure we don't install the modules,
|
|
# $(KDE_CHECK_PLUGIN) assures a shared library is created.
|
|
check_LTLIBRARIES = tdeunittest_DateTimeTester.la \
|
|
tdeunittest_DurationTester.la \
|
|
tdeunittest_CalendarTester.la
|
|
|
|
tdeunittest_DateTimeTester_la_SOURCES = DateTimeTester.cpp
|
|
tdeunittest_DateTimeTester_la_LIBADD = -ltdeunittest ../libkplatopart.la
|
|
tdeunittest_DateTimeTester_la_LDFLAGS = -module $(KDE_CHECK_PLUGIN) $(all_libraries)
|
|
|
|
tdeunittest_DurationTester_la_SOURCES = DurationTester.cpp
|
|
tdeunittest_DurationTester_la_LIBADD = -ltdeunittest ../libkplatopart.la
|
|
tdeunittest_DurationTester_la_LDFLAGS = -module $(KDE_CHECK_PLUGIN) $(all_libraries)
|
|
|
|
tdeunittest_CalendarTester_la_SOURCES = CalendarTester.cpp
|
|
tdeunittest_CalendarTester_la_LIBADD = -ltdeunittest ../libkplatopart.la
|
|
tdeunittest_CalendarTester_la_LDFLAGS = -module $(KDE_CHECK_PLUGIN) $(all_libraries)
|
|
|
|
check-local: tdeunittest_DateTimeTester.la \
|
|
tdeunittest_DurationTester.la \
|
|
tdeunittest_CalendarTester.la
|
|
|
|
check:
|
|
tdeunittestmodrunner
|
|
|