mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
12e238f806
The test works by comparing the result of AngleVectors with forward, right, and up vectors rotated by the quaternion resulting from AngleQuat.
15 lines
413 B
Makefile
15 lines
413 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
check_PROGRAMS=test-qfs test-quat
|
|
|
|
test_qfs_SOURCES=test-qfs.c
|
|
test_qfs_LDADD=$(top_builddir)/libs/util/libQFutil.la
|
|
test_qfs_DEPENDENCIES=$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
test_quat_SOURCES=test-quat.c
|
|
test_quat_LDADD=$(top_builddir)/libs/util/libQFutil.la
|
|
test_quat_DEPENDENCIES=$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
TESTS=$(check_PROGRAMS)
|