still plenty of problems with angleaxis and other linear algebra stuff

This commit is contained in:
Hartmut Seichter 2019-01-25 18:01:01 +01:00
parent 9bdc13e3fc
commit 5245ceb112
13 changed files with 146 additions and 166 deletions

View file

@ -1,29 +1,15 @@
add_executable(pwcore_test_matrix
pwcore_test_matrix.cpp
)
target_link_libraries(pwcore_test_matrix
pwcore)
add_executable(pwcore_test_vector
pwcore_test_vector.cpp
macro(make_test arg1)
add_executable(${arg1}
${arg1}.cpp
)
target_link_libraries(pwcore_test_vector
pwcore)
target_link_libraries(${arg1}
pwcore)
endmacro()
add_executable(pwcore_test_quaternion
pwcore_test_quaternion.cpp
)
target_link_libraries(pwcore_test_quaternion
pwcore)
add_executable(pwcore_test_axisangle
pwcore_test_axisangle.cpp
)
target_link_libraries(pwcore_test_axisangle
pwcore)
make_test(pwcore_test_matrix)
make_test(pwcore_test_vector)
make_test(pwcore_test_axisangle)
make_test(pwcore_test_quaternion)
make_test(pwcore_test_transform_tools)
make_test(pwcore_test_mesh)