removed constexpr

This commit is contained in:
2024-07-11 22:42:40 +03:00
parent 3241b07a3b
commit 6d52bedffb
4 changed files with 8 additions and 11 deletions

View File

@@ -3,7 +3,10 @@ enable_testing()
project(unit-tests)
file(GLOB TEST_SRC_FILES ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
include(GoogleTest)
add_executable(unit-tests UnitTestColor.cpp UnitTestMatrix.cpp)
target_link_libraries(unit-tests PRIVATE gtest gtest_main omath)
target_link_libraries(unit-tests PRIVATE gtest gtest_main omath)
gtest_discover_tests(unit-tests)