Skip to content

Commit

Permalink
allow higher version of c++ then c++20
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslan-ilesik committed Jul 19, 2024
1 parent c3dd88d commit 67de142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ else()
endif()


if(CMAKE_CXX_STANDARD EQUAL 20 OR DPP_CORO)
if(CMAKE_CXX_STANDARD GREATER_EQUAL 20 OR DPP_CORO)
include(CheckCXXSourceCompiles)
unset(HAS_FORMAT CACHE)
set(temp_flags "${CMAKE_REQUIRED_FLAGS}")
Expand Down

0 comments on commit 67de142

Please sign in to comment.