Skip to content

Commit

Permalink
Fix missed cmake IF logic
Browse files Browse the repository at this point in the history
  • Loading branch information
dougmassay committed Nov 11, 2024
1 parent 5f24029 commit 7fbbe90
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 @@ -53,7 +53,7 @@ else()
set ( WIN_MIN_VERSION 6.1.7601 )
endif()

if (${CMAKE_VERSION} VERSION_GREATER_EQUAL ${RECENT_CMAKE_VER} AND ${TRY_NEWER_FINDPYTHON3})
if (TRY_NEWER_FINDPYTHON3)
set ( USE_NEWER_FINDPYTHON3 1 )
else()
set ( USE_NEWER_FINDPYTHON3 0 )
Expand Down

0 comments on commit 7fbbe90

Please sign in to comment.