blob: 16de4ba7c5fa9b3a282224357027c5b1070996f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
KDE_CXXFLAGS = $(USE_RTTI)
INCLUDES = \
$(KOFFICE_INCLUDES) \
$(KOTEXT_INCLUDES) \
-I$(srcdir)/.. \
$(all_includes)
check_PROGRAMS = formulatest
TESTS = formulatest
formulatest_SOURCES = test_formula.cpp
formulatest_LDADD = ../libkspreadcommon.la
noinst_LTLIBRARIES = \
libtests.la
libtests_la_SOURCES = \
tester.cpp \
testrunner.cpp \
value_tester.cpp \
formula_tester.cpp \
inspector.cpp
noinst_HEADERS = \
tester.h \
testrunner.h \
value_tester.h \
formula_tester.h \
inspector.h
METASOURCES = AUTO
|