mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-24 12:42:32 +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.
16 lines
419 B
Text
16 lines
419 B
Text
libs_console_tests = \
|
|
libs/console/test/test-buffer
|
|
|
|
TESTS += $(libs_console_tests)
|
|
|
|
check_PROGRAMS += $(libs_console_tests)
|
|
|
|
test_console_libs= \
|
|
libs/console/libQFconsole.la \
|
|
libs/util/libQFutil.la
|
|
|
|
libs_console_test_test_buffer_SOURCES= \
|
|
libs/console/test/test-buffer.c \
|
|
$(tracy_src)
|
|
libs_console_test_test_buffer_LDADD= $(test_console_libs)
|
|
libs_console_test_test_buffer_DEPENDENCIES=$(test_console_libs)
|