Skip to content

Commit

Permalink
Update CMake files to use FindPython3
Browse files Browse the repository at this point in the history
FindPythonInterp is deprectaed. FindPython3 is a drop-in replacement.
  • Loading branch information
lmoureaux committed Nov 22, 2023
1 parent 2161737 commit b13da4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/FreecivDependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
check_function_exists(at_quick_exit HAVE_AT_QUICK_EXIT)

# Required to generate the network protocol implementation
find_package(PythonInterp 3 REQUIRED)
find_package(Python3 REQUIRED)

# Required as the main networking and utility library
find_package(Qt5 5.15 COMPONENTS Core Network REQUIRED)
Expand Down

0 comments on commit b13da4e

Please sign in to comment.