We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adb3661 commit abc1508Copy full SHA for abc1508
1 file changed
cmake/modules/DabcConfiguration.cmake
@@ -71,7 +71,9 @@ if(NOT APPLE)
71
find_library(DABC_rt_LIBRARY rt)
72
if(CMAKE_CXX_COMPILER_ID STREQUAL Clang)
73
find_library(DABC_m_LIBRARY m)
74
- find_library(DABC_cpp_LIBRARY "c++")
+ if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 20.0)
75
+ find_library(DABC_cpp_LIBRARY "c++")
76
+ endif()
77
endif()
78
79
0 commit comments