Skip to content
Snippets Groups Projects
Verified Commit dc565efe authored by Justin Carpentier's avatar Justin Carpentier
Browse files

test/cmake: set C++11 standard for tensor

parent 91b5a2af
No related branches found
No related tags found
No related merge requests found
Pipeline #25952 failed
......@@ -31,6 +31,9 @@ endmacro(ADD_LIB_UNIT_TEST)
add_lib_unit_test(matrix)
if(EIGENPY_WITH_TENSOR_SUPPORT)
add_lib_unit_test(tensor)
if(NOT DEFINED CMAKE_CXX_STANDARD)
set_target_properties(tensor PROPERTIES CXX_STANDARD 11)
endif()
endif()
add_lib_unit_test(geometry)
add_lib_unit_test(complex)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment