diff options
author | 3gg <3gg@shellblade.net> | 2023-02-04 11:07:21 -0800 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2023-02-04 11:07:21 -0800 |
commit | fc175dbb72f80764431c1fe82ab8996b114831da (patch) | |
tree | 306c54ac2f43e00b56161199de6caf3cb244fe13 /CMakeLists.txt | |
parent | 9f39e29b40ce952773ff97c468384475d1fdcc53 (diff) |
Add slerp and qslerp.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a3e4638..916dbfa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -15,7 +15,9 @@ target_link_libraries(math INTERFACE | |||
15 | # Test. | 15 | # Test. |
16 | 16 | ||
17 | add_executable(math_test | 17 | add_executable(math_test |
18 | test/mat4_test.c) | 18 | test/mat4_test.c |
19 | test/quat_test.c | ||
20 | test/vec3_test.c) | ||
19 | 21 | ||
20 | target_link_libraries(math_test | 22 | target_link_libraries(math_test |
21 | math) | 23 | math) |