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.
|
|
|
|
|
|
2008-12-18 05:11:47 +01:00
|
|
|
testlib_srcdir = $(top_srcdir)/tests/lib
|
2008-05-19 13:30:20 +02:00
|
|
|
|
2008-12-18 05:11:47 +01:00
|
|
|
check_PROGRAMS += test-lib
|
2010-01-17 15:48:30 +01:00
|
|
|
test_lib_CPPFLAGS = $(AM_CPPFLAGS) -Wall -I$(testlib_srcdir) $(LUMIERA_GUI_CFLAGS)
|
|
|
|
|
#why gui cflags/libs?
|
2008-12-18 07:44:06 +01:00
|
|
|
|
2008-12-18 10:48:50 +01:00
|
|
|
test_lib_LDADD = \
|
2010-01-17 15:48:30 +01:00
|
|
|
$(LUMIERA_LIBRARY_LIBS) \
|
|
|
|
|
$(LUMIERA_GUI_LIBS) \
|
2008-12-18 10:48:50 +01:00
|
|
|
liblumiprocmobjectbuilder.la \
|
|
|
|
|
liblumiprocmobjectsession.la \
|
|
|
|
|
liblumiprocmobject.la \
|
|
|
|
|
liblumiprocengine.la \
|
|
|
|
|
liblumiproccontrol.la \
|
|
|
|
|
liblumieraproc.la \
|
|
|
|
|
liblumiprocasset.la \
|
|
|
|
|
liblumierabackend.la \
|
|
|
|
|
liblumieracommon.la \
|
2010-01-17 15:48:30 +01:00
|
|
|
liblumiera.la
|
2008-05-19 13:30:20 +02:00
|
|
|
|
2008-12-18 06:47:54 +01:00
|
|
|
test_lib_SOURCES = \
|
2009-09-30 02:26:32 +02:00
|
|
|
$(testlib_srcdir)/mainsuite.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/allocationclustertest.cpp \
|
|
|
|
|
$(testlib_srcdir)/appconfigtest.cpp \
|
2010-04-02 21:51:39 +02:00
|
|
|
$(testlib_srcdir)/custom-shared-ptr-test.cpp \
|
2009-06-26 18:50:30 +02:00
|
|
|
$(testlib_srcdir)/bool-checkable-test.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/exceptionerrortest.cpp \
|
2009-06-06 06:55:13 +02:00
|
|
|
$(testlib_srcdir)/factory-special-test.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/factorytest.cpp \
|
2009-07-19 08:03:54 +02:00
|
|
|
$(testlib_srcdir)/format-helper-test.cpp \
|
2009-07-20 07:03:18 +02:00
|
|
|
$(testlib_srcdir)/functor-util-test.cpp \
|
2010-01-13 10:25:33 +01:00
|
|
|
$(testlib_srcdir)/util-foreach-test.cpp \
|
2009-05-23 05:13:51 +02:00
|
|
|
$(testlib_srcdir)/hash-indexed-test.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/helloworldtest.cpp \
|
|
|
|
|
$(testlib_srcdir)/lifecycletest.cpp \
|
2009-09-30 02:26:32 +02:00
|
|
|
$(testlib_srcdir)/multifact-test.cpp \
|
2010-01-13 10:25:33 +01:00
|
|
|
$(testlib_srcdir)/multifact-argument-test.cpp \
|
2009-07-13 01:25:24 +02:00
|
|
|
$(testlib_srcdir)/iter-adapter-test.cpp \
|
2010-01-13 10:25:33 +01:00
|
|
|
$(testlib_srcdir)/item-wrapper-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/itertools-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/iter-source-test.cpp \
|
2009-06-20 01:28:47 +02:00
|
|
|
$(testlib_srcdir)/meta/typelist-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/meta/typelist-manip-test.cpp \
|
2009-06-30 04:56:10 +02:00
|
|
|
$(testlib_srcdir)/meta/typeseq-manip-test.cpp \
|
2009-06-20 18:06:07 +02:00
|
|
|
$(testlib_srcdir)/meta/type-tuple-test.cpp \
|
2009-06-29 06:33:42 +02:00
|
|
|
$(testlib_srcdir)/meta/function-composition-test.cpp \
|
2009-06-20 01:28:47 +02:00
|
|
|
$(testlib_srcdir)/meta/function-closure-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/meta/function-erasure-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/meta/generator-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/meta/config-flags-test.cpp \
|
2010-01-13 10:25:33 +01:00
|
|
|
$(testlib_srcdir)/meta/duck-detector-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/meta/iterable-classification-test.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/removefromsettest.cpp \
|
2009-07-19 05:47:36 +02:00
|
|
|
$(testlib_srcdir)/sanitised-identifier-test.cpp \
|
2009-07-18 22:07:46 +02:00
|
|
|
$(testlib_srcdir)/opaque-unchecked-buffer-test.cpp \
|
2009-07-04 03:33:15 +02:00
|
|
|
$(testlib_srcdir)/opaque-holder-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/scoped-holder-test.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/scopedholdertransfertest.cpp \
|
2009-02-09 01:48:13 +01:00
|
|
|
$(testlib_srcdir)/scoped-ptrvect-test.cpp \
|
2009-07-19 05:47:36 +02:00
|
|
|
$(testlib_srcdir)/singleton-subclass-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/singleton-test.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/singletontestmocktest.cpp \
|
|
|
|
|
$(testlib_srcdir)/streamtypebasicstest.cpp \
|
|
|
|
|
$(testlib_srcdir)/streamtypelifecycletest.cpp \
|
2008-12-31 06:56:31 +01:00
|
|
|
$(testlib_srcdir)/subsystem-runner-test.cpp \
|
2008-12-27 01:11:17 +01:00
|
|
|
$(testlib_srcdir)/sync-classlock-test.cpp \
|
2008-12-22 17:00:15 +01:00
|
|
|
$(testlib_srcdir)/sync-locking-test.cpp \
|
2008-12-27 01:11:17 +01:00
|
|
|
$(testlib_srcdir)/sync-waiting-test.cpp \
|
2009-09-25 01:10:20 +02:00
|
|
|
$(testlib_srcdir)/symbol-test.cpp \
|
|
|
|
|
$(testlib_srcdir)/symbol-hashtable-test.cpp \
|
2009-08-27 16:21:21 +02:00
|
|
|
$(testlib_srcdir)/time-wrapper-test.cpp \
|
2009-01-02 08:07:55 +01:00
|
|
|
$(testlib_srcdir)/thread-wrapper-test.cpp \
|
2009-01-18 16:59:24 +01:00
|
|
|
$(testlib_srcdir)/thread-wrapper-join-test.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/test/cmdlinewrappertest.cpp \
|
|
|
|
|
$(testlib_srcdir)/test/testoptiontest.cpp \
|
2009-05-30 23:49:02 +02:00
|
|
|
$(testlib_srcdir)/test/test-helper-test.cpp \
|
2009-08-29 03:10:34 +02:00
|
|
|
$(testlib_srcdir)/typed-allocation-manager-test.cpp \
|
2009-09-26 23:00:55 +02:00
|
|
|
$(testlib_srcdir)/typed-counter-test.cpp \
|
2009-10-02 01:52:59 +02:00
|
|
|
$(testlib_srcdir)/sub-id-test.cpp \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/vectortransfertest.cpp \
|
|
|
|
|
$(testlib_srcdir)/visitingtoolconcept.cpp \
|
|
|
|
|
$(testlib_srcdir)/visitingtoolextendedtest.cpp \
|
|
|
|
|
$(testlib_srcdir)/visitingtooltest.cpp
|
2008-05-19 13:30:20 +02:00
|
|
|
|
|
|
|
|
noinst_HEADERS += \
|
2008-12-18 05:11:47 +01:00
|
|
|
$(testlib_srcdir)/query/querydiagnostics.hpp \
|
|
|
|
|
$(testlib_srcdir)/testdummy.hpp \
|
|
|
|
|
$(testlib_srcdir)/testtargetobj.hpp
|