blob: caeed44e80869100b3d5e44613316e63973281c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
####### General stuff
KDE_CXXFLAGS = $(USE_RTTI)
INCLUDES= -I$(srcdir)/.. -I$(srcdir)/../../kofficecore $(all_includes)
####### Files
check_PROGRAMS = storage_test xmlwritertest storedroptest
TESTS = storage_test xmlwritertest
storage_test_SOURCES = storage_test.cpp
storage_test_LDADD = ../libkstore.la
xmlwritertest_SOURCES = xmlwritertest.cpp
xmlwritertest_LDADD = ../libkstore.la
storedroptest_SOURCES = storedroptest.cpp
storedroptest_LDADD = ../libkstore.la
|