mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +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.
18 lines
441 B
Text
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)
|