mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
0b6e8b60bd
This allows rotation of components within the array. I'm not sure if it's what I want, but it was an interesting exercise anyway.
49 lines
1.3 KiB
Text
49 lines
1.3 KiB
Text
libs_ecs_tests = \
|
|
libs/ecs/test/test-components \
|
|
libs/ecs/test/test-compops \
|
|
libs/ecs/test/test-hierarchy \
|
|
libs/ecs/test/test-registry \
|
|
libs/ecs/test/test-subpools
|
|
|
|
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_compops_SOURCES= \
|
|
libs/ecs/test/test-compops.c
|
|
libs_ecs_test_test_compops_LDADD= \
|
|
$(libs_ecs_test_libs)
|
|
libs_ecs_test_test_compops_DEPENDENCIES= \
|
|
$(libs_ecs_test_libs)
|
|
|
|
libs_ecs_test_test_hierarchy_SOURCES= \
|
|
libs/ecs/test/test-hierarchy.c
|
|
libs_ecs_test_test_hierarchy_LDADD= \
|
|
$(libs_ecs_test_libs)
|
|
libs_ecs_test_test_hierarchy_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)
|
|
|
|
libs_ecs_test_test_subpools_SOURCES= \
|
|
libs/ecs/test/test-subpools.c
|
|
libs_ecs_test_test_subpools_LDADD= \
|
|
$(libs_ecs_test_libs)
|
|
libs_ecs_test_test_subpools_DEPENDENCIES= \
|
|
$(libs_ecs_test_libs)
|