blob: 87c3bbdca98fc505636fb140d2966c234666e95b (
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.cc
formulatest_LDADD = ../libkspreadcommon.la
noinst_LTLIBRARIES = \
libtests.la
libtests_la_SOURCES = \
tester.cc \
testrunner.cc \
value_tester.cc \
formula_tester.cc \
inspector.cc
noinst_HEADERS = \
tester.h \
testrunner.h \
value_tester.h \
formula_tester.h \
inspector.h
METASOURCES = AUTO
|