2008-05-19 13:30:20 +02:00
|
|
|
# Copyright (C) Lumiera.org
|
|
|
|
|
# 2008, Christian Thaeter <ct@pipapo.org>
|
|
|
|
|
# Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
|
|
testcommon_srcdir = $(top_srcdir)/tests/common
|
|
|
|
|
|
|
|
|
|
check_PROGRAMS += test-common
|
2008-08-28 04:30:23 +02:00
|
|
|
test_common_CPPFLAGS = $(AM_CPPFLAGS) -Wall -I$(testcommon_srcdir)
|
2008-12-16 19:54:48 +01:00
|
|
|
test_common_LDADD = \
|
|
|
|
|
liblumiprocmobjectbuilder.a \
|
|
|
|
|
liblumiprocmobjectsession.a \
|
|
|
|
|
liblumiprocmobject.a \
|
|
|
|
|
liblumiprocengine.a \
|
|
|
|
|
liblumiproccontrol.a \
|
|
|
|
|
liblumiproc.a \
|
|
|
|
|
liblumiprocasset.a \
|
|
|
|
|
liblumibackend.a \
|
|
|
|
|
liblumicommon.a \
|
|
|
|
|
liblumieracore.a \
|
|
|
|
|
liblumiera.a \
|
2008-08-30 19:28:24 +02:00
|
|
|
$(NOBUGMT_LUMIERA_LIBS) -ldl -lboost_program_options-mt -lboost_regex-mt
|
2008-05-19 13:30:20 +02:00
|
|
|
|
|
|
|
|
test_common_SOURCES = \
|
2008-11-07 01:26:31 +01:00
|
|
|
$(testcommon_srcdir)/allocationclustertest.cpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/appconfigtest.cpp \
|
2008-11-07 01:26:31 +01:00
|
|
|
$(testcommon_srcdir)/customsharedptrtest.cpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/exceptionerrortest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/factoryspecialtest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/factorytest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/helloworldtest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/lifecycletest.cpp \
|
2008-08-21 09:58:34 +02:00
|
|
|
$(testcommon_srcdir)/mainsuite.cpp \
|
2008-11-06 04:25:33 +01:00
|
|
|
$(testcommon_srcdir)/meta/typelisttest.cpp \
|
2008-11-07 01:26:31 +01:00
|
|
|
$(testcommon_srcdir)/meta/typelistmaniptest.cpp \
|
2008-11-06 04:25:33 +01:00
|
|
|
$(testcommon_srcdir)/meta/generatortest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/meta/configflagstest.cpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/query/queryutilstest.cpp \
|
2008-11-07 01:26:31 +01:00
|
|
|
$(testcommon_srcdir)/removefromsettest.cpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/sanitizedidentifiertest.cpp \
|
2008-11-06 04:25:33 +01:00
|
|
|
$(testcommon_srcdir)/scopedholdertest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/scopedholdertransfertest.cpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/singletonsubclasstest.cpp \
|
2008-11-07 01:26:31 +01:00
|
|
|
$(testcommon_srcdir)/singletontest.cpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/singletontestmocktest.cpp \
|
2008-11-06 04:25:33 +01:00
|
|
|
$(testcommon_srcdir)/streamtypebasicstest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/streamtypelifecycletest.cpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/test/cmdlinewrappertest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/test/testoptiontest.cpp \
|
2008-11-07 01:26:31 +01:00
|
|
|
$(testcommon_srcdir)/vectortransfertest.cpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/visitingtoolconcept.cpp \
|
|
|
|
|
$(testcommon_srcdir)/visitingtoolextendedtest.cpp \
|
|
|
|
|
$(testcommon_srcdir)/visitingtooltest.cpp
|
|
|
|
|
|
|
|
|
|
noinst_HEADERS += \
|
|
|
|
|
$(testcommon_srcdir)/query/querydiagnostics.hpp \
|
2008-11-07 01:26:31 +01:00
|
|
|
$(testcommon_srcdir)/testdummy.hpp \
|
2008-05-19 13:30:20 +02:00
|
|
|
$(testcommon_srcdir)/testtargetobj.hpp
|