pixwerx/src/core/tests/CMakeLists.txt

16 lines
340 B
Text
Raw Normal View History

macro(make_test arg1)
add_executable(${arg1}
${arg1}.cpp
2019-01-22 14:16:03 +01:00
)
target_link_libraries(${arg1}
pwcore)
endmacro()
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)