mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-25 05:01:24 +00:00
This proved to be quite the challenge, and is probably rather fragile, but it does seem to work, and might help with tracking down memory leaks.
19 lines
459 B
Text
19 lines
459 B
Text
libs_scene_tests = \
|
|
libs/scene/test/test-transform
|
|
|
|
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_transform_SOURCES= \
|
|
libs/scene/test/test-transform.c \
|
|
$(tracy_src)
|
|
libs_scene_test_test_transform_LDADD= \
|
|
$(libs_scene_test_libs)
|
|
libs_scene_test_test_transform_DEPENDENCIES= \
|
|
$(libs_scene_test_libs)
|