lumiera_/tests/core/Makefile.am
Ichthyostega ada5cefaaf re-arrange tests according to layer structure
the buildsystem will now pick up and link
all test cases according to the layer, e.g.
backend tests will automatically be linked
against the backend + library solely.
2013-01-07 05:43:01 +01:00

119 lines
6.7 KiB
Makefile

# 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.
testcomponents_srcdir = $(top_srcdir)/tests/components
check_PROGRAMS += test-components
test_components_CPPFLAGS = $(AM_CPPFLAGS) -Wall -I$(testcomponents_srcdir)
test_components_LDADD = \
$(LUMIERA_LIBS) \
liblumiera.la \
liblumierabackend.la \
liblumieracommon.la \
liblumieraproc.la \
liblumiprocasset.la \
liblumiprocengine.la \
liblumiprocmobject.la \
liblumiprocmobjectbuilder.la \
liblumiprocmobjectsession.la
test_components_SOURCES = \
$(testcomponents_srcdir)/mainsuite.cpp \
$(testcomponents_srcdir)/backend/mediaaccessmock.cpp \
$(testcomponents_srcdir)/backend/mediaaccessmocktest.cpp \
$(testcomponents_srcdir)/proc/asset/asset-category-test.cpp \
$(testcomponents_srcdir)/proc/asset/basicpipetest.cpp \
$(testcomponents_srcdir)/proc/asset/compoundmediatest.cpp \
$(testcomponents_srcdir)/proc/asset/create-asset-test.cpp \
$(testcomponents_srcdir)/proc/asset/deleteassettest.cpp \
$(testcomponents_srcdir)/proc/asset/dependent-assets-test.cpp \
$(testcomponents_srcdir)/proc/asset/entry-id-test.cpp \
$(testcomponents_srcdir)/proc/asset/identityofassetstest.cpp \
$(testcomponents_srcdir)/proc/asset/makecliptest.cpp \
$(testcomponents_srcdir)/proc/asset/mediastructurequerytest.cpp \
$(testcomponents_srcdir)/proc/asset/orderingofassetstest.cpp \
$(testcomponents_srcdir)/proc/asset/testasset.cpp \
$(testcomponents_srcdir)/proc/asset/typed-id-test.cpp \
$(testcomponents_srcdir)/proc/asset/meta/time-grid-basics-test.cpp \
$(testcomponents_srcdir)/proc/control/argument-tuple-accept-test.cpp \
$(testcomponents_srcdir)/proc/control/command-argument-test.cpp \
$(testcomponents_srcdir)/proc/control/command-basic-test.cpp \
$(testcomponents_srcdir)/proc/control/command-binding-test.cpp \
$(testcomponents_srcdir)/proc/control/command-clone-builder-test.cpp \
$(testcomponents_srcdir)/proc/control/command-equality-test.cpp \
$(testcomponents_srcdir)/proc/control/command-mutation-test.cpp \
$(testcomponents_srcdir)/proc/control/command-registry-test.cpp \
$(testcomponents_srcdir)/proc/control/command-use1-test.cpp \
$(testcomponents_srcdir)/proc/control/command-use2-test.cpp \
$(testcomponents_srcdir)/proc/control/command-use3-test.cpp \
$(testcomponents_srcdir)/proc/control/handling-pattern-basics-test.cpp \
$(testcomponents_srcdir)/proc/control/handling-pattern-standard-impl-test.cpp \
$(testcomponents_srcdir)/proc/control/memento-tie-test.cpp \
$(testcomponents_srcdir)/proc/control/test-dummy-commands.cpp \
$(testcomponents_srcdir)/proc/engine/buff-table-test.cpp \
$(testcomponents_srcdir)/proc/engine/node-basic-test.cpp \
$(testcomponents_srcdir)/proc/engine/node-fabrication-test.cpp \
$(testcomponents_srcdir)/proc/engine/node-operation-test.cpp \
$(testcomponents_srcdir)/proc/engine/node-source-test.cpp \
$(testcomponents_srcdir)/proc/mobject/builder/buildertooltest.cpp \
$(testcomponents_srcdir)/proc/mobject/builder/buildsegmenttest.cpp \
$(testcomponents_srcdir)/proc/mobject/builder/model-port-registry-test.cpp \
$(testcomponents_srcdir)/proc/mobject/builder/fixture-change-detector-test.cpp \
$(testcomponents_srcdir)/proc/mobject/builder/segmentation-datastructure-test.cpp\
$(testcomponents_srcdir)/proc/mobject/controller/rendersegmenttest.cpp \
$(testcomponents_srcdir)/proc/mobject/mobject-interface-test.cpp \
$(testcomponents_srcdir)/proc/mobject/mobject-ref-test.cpp \
$(testcomponents_srcdir)/proc/mobject/output-mapping-test.cpp \
$(testcomponents_srcdir)/proc/mobject/placement-basic-test.cpp \
$(testcomponents_srcdir)/proc/mobject/placement-hierarchy-test.cpp \
$(testcomponents_srcdir)/proc/mobject/placement-object-identity-test.cpp \
$(testcomponents_srcdir)/proc/mobject/placement-ref-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/addcliptest.cpp \
$(testcomponents_srcdir)/proc/mobject/session/defs-manager-impl-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/defs-manager-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/defs-registry-impl-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/deletecliptest.cpp \
$(testcomponents_srcdir)/proc/mobject/session/placement-index-query-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/placement-index-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/placement-scope-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/query-focus-stack-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/query-focus-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/query-resolver-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/rebuildfixturetest.cpp \
$(testcomponents_srcdir)/proc/mobject/session/scope-path-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/scope-query-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/session-element-query-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/session-element-tracker-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/sessionmanagertest.cpp \
$(testcomponents_srcdir)/proc/mobject/session/session-modify-parts-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/session-service-access-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/session-structure-test.cpp \
$(testcomponents_srcdir)/proc/mobject/session/testclip.cpp \
$(testcomponents_srcdir)/proc/mobject/session/test-scopes.cpp \
$(testcomponents_srcdir)/proc/mobject/session/timeline-sequence-handling-test.cpp
noinst_HEADERS += \
$(testcomponents_srcdir)/proc/asset/asset-diagnostics.hpp \
$(testcomponents_srcdir)/proc/asset/testasset.hpp \
$(testcomponents_srcdir)/proc/asset/testclipasset.hpp \
$(testcomponents_srcdir)/proc/mobject/session/testclip.hpp \
$(testcomponents_srcdir)/proc/mobject/session/testsession1.hpp \
$(testcomponents_srcdir)/proc/mobject/session/test-scope-invalid.hpp