mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
10037927ea
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.
33 lines
867 B
Text
33 lines
867 B
Text
libs_ecs_tests = \
|
|
libs/ecs/test/test-components \
|
|
libs/ecs/test/test-hierarchy \
|
|
libs/ecs/test/test-registry
|
|
|
|
TESTS += $(libs_ecs_tests)
|
|
|
|
check_PROGRAMS += $(libs_ecs_tests)
|
|
|
|
libs_ecs_test_libs= \
|
|
libs/ecs/libQFecs.la \
|
|
libs/util/libQFutil.la
|
|
|
|
libs_ecs_test_test_components_SOURCES= \
|
|
libs/ecs/test/test-components.c
|
|
libs_ecs_test_test_components_LDADD= \
|
|
$(libs_ecs_test_libs)
|
|
libs_ecs_test_test_components_DEPENDENCIES= \
|
|
$(libs_ecs_test_libs)
|
|
|
|
libs_ecs_test_test_hierarchy_SOURCES= \
|
|
libs/ecs/test/test-hierarchy.c
|
|
libs_ecs_test_test_hierarchy_LDADD= \
|
|
$(libs_ecs_test_libs)
|
|
libs_ecs_test_test_hierarchy_DEPENDENCIES= \
|
|
$(libs_ecs_test_libs)
|
|
|
|
libs_ecs_test_test_registry_SOURCES= \
|
|
libs/ecs/test/test-registry.c
|
|
libs_ecs_test_test_registry_LDADD= \
|
|
$(libs_ecs_test_libs)
|
|
libs_ecs_test_test_registry_DEPENDENCIES= \
|
|
$(libs_ecs_test_libs)
|