Skip to content
Snippets Groups Projects
Commit c0620f3f authored by Oskar Lappi's avatar Oskar Lappi
Browse files

Fixed message

parent 6a05ea13
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,11 @@ if (OJL_BIMAP_BUILD_TESTS)
check_cxx_compiler_flag(-std=c++20 CXX_20_SUPPORT)
if (NOT CXX_20_SUPPORT)
message(FATAL_ERROR "The C++ compiler does not support the -std=c++20 flag")
message(FATAL_ERROR "Use a compiler that supports C++ 20, like clang++ >= 10")
message(FATAL_ERROR "\
The C++ compiler does not support the -std=c++20 flag\n\
Use a compiler that supports C++ 20, like clang++ >= 10\
")
message(FATAL_ERROR
endif()
......
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