mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-01 13:30:42 +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.
25 lines
629 B
Text
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)
|