quakeforge/libs/scene/test/Makemodule.am
Bill Currie 10037927ea [ecs] Add hierarchy-only tests
The hierarchy-specific tests from the transform tests have been moved
into the ecs tests and the transform tests renamed appropriately. As
part of the process, hierarchies can now have a null type (ie, no
additional components maintained by the hierarchy). This should make
sorting out the issues highlighted by sbar a bit easier.
2022-11-05 21:29:38 +09:00

18 lines
441 B
Text

libs_scene_tests = \
libs/scene/test/test-transform
TESTS += $(libs_scene_tests)
check_PROGRAMS += $(libs_scene_tests)
libs_scene_test_libs= \
libs/scene/libQFscene.la \
libs/ecs/libQFecs.la \
libs/util/libQFutil.la
libs_scene_test_test_transform_SOURCES= \
libs/scene/test/test-transform.c
libs_scene_test_test_transform_LDADD= \
$(libs_scene_test_libs)
libs_scene_test_test_transform_DEPENDENCIES= \
$(libs_scene_test_libs)