quakeforge/libs/scene/test/Makemodule.am
Bill Currie db7f8a461e [ecs] Move ECS core into its own library
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.
2022-10-26 17:24:03 +09:00

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)