quakeforge/libs/ecs/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

25 lines
629 B
Text

libs_ecs_tests = \
libs/ecs/test/test-components \
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_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)