CMake Error in src/CMakeLists.txt: Target "test" requires the language dialect "CXX20" . But the current compiler "GNU" does not support this, or CMake does not know the flags toenable it.
时间: 2023-05-21 11:06:30 浏览: 1600
这个错误出现是因为 CMakeLists.txt 中的 test 目标需要使用 CXX20 语言方言,但当前的编译器 "GNU" 不支持,或者 CMake 不知道启用这些标志。需要更换支持 CXX20 语言方言的编译器或手动更改 CMakeLists.txt 文件中 test 目标的语言方言。
阅读全文