mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
3230270ae3
The plan is to have a fully component based entity system. This adds hierarchical transforms. Not particularly useful for quake itself at this stage, but it will allow for much more flexibility later on, especially when QuakeForge becomes more general-purpose.
19 lines
442 B
Text
19 lines
442 B
Text
libs_entity_tests = \
|
|
libs/entity/test/test-hierarchy \
|
|
$e
|
|
|
|
TESTS += $(libs_entity_tests)
|
|
|
|
check_PROGRAMS += $(libs_entity_tests)
|
|
|
|
libs_entity_test_libs= \
|
|
libs/entity/libQFentity.la \
|
|
libs/util/libQFutil.la
|
|
|
|
libs_entity_test_test_hierarchy_SOURCES= \
|
|
libs/entity/test/test-hierarchy.c \
|
|
$e
|
|
libs_entity_test_test_hierarchy_LDADD= \
|
|
$(libs_entity_test_libs)
|
|
libs_entity_test_test_hierarchy_DEPENDENCIES= \
|
|
$(libs_entity_test_libs)
|