mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
db7f8a461e
While the libraries are probably getting a little out of hand, the separation into its own directory is probably a good thing as an ECS should not be tied to scenes. This should make the ECS more generally useful.
18 lines
441 B
Text
18 lines
441 B
Text
libs_scene_tests = \
|
|
libs/scene/test/test-hierarchy
|
|
|
|
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_hierarchy_SOURCES= \
|
|
libs/scene/test/test-hierarchy.c
|
|
libs_scene_test_test_hierarchy_LDADD= \
|
|
$(libs_scene_test_libs)
|
|
libs_scene_test_test_hierarchy_DEPENDENCIES= \
|
|
$(libs_scene_test_libs)
|