Fixed broken unit tests
This commit is contained in:
@@ -1,26 +1,26 @@
|
||||
# Quaternion tests
|
||||
add_executable(quaternion-tests unit-tests/quaternion-tests.cpp)
|
||||
add_executable(quaternion-tests quaternion-tests.cpp)
|
||||
|
||||
target_link_libraries(quaternion-tests
|
||||
PRIVATE
|
||||
vector-3d-intf
|
||||
quaternion
|
||||
Catch2::Catch2WithMain
|
||||
)
|
||||
|
||||
# matrix tests
|
||||
add_executable(matrix-tests unit-tests/matrix-tests.cpp)
|
||||
add_executable(matrix-tests matrix-tests.cpp)
|
||||
|
||||
target_link_libraries(matrix-tests
|
||||
PRIVATE
|
||||
vector-3d-intf
|
||||
matrix
|
||||
Catch2::Catch2WithMain
|
||||
)
|
||||
|
||||
# Vector 3D Tests
|
||||
add_executable(vector-3d-tests unit-tests/vector-tests.cpp)
|
||||
add_executable(vector-3d-tests vector-tests.cpp)
|
||||
|
||||
target_link_libraries(vector-3d-tests
|
||||
PRIVATE
|
||||
vector-3d-intf
|
||||
vector-3d
|
||||
Catch2::Catch2WithMain
|
||||
)
|
||||
Reference in New Issue
Block a user