InfiniTime.git

commit a77a3dcb8b12fbec0ee6f98bce1f08578a9a90b2

Author: xz-dev <xiangzhedev@gmail.com>

cmake: fix python path with use multi-version python

 src/displayapp/fonts/CMakeLists.txt | 1 +
 src/resources/CMakeLists.txt | 1 +


diff --git a/src/displayapp/fonts/CMakeLists.txt b/src/displayapp/fonts/CMakeLists.txt
index 22627efcadbdf2148149edec854f7a3a8d285c81..562f0801adb6c7bce1f0fc4046472f7af7906f1d 100644
--- a/src/displayapp/fonts/CMakeLists.txt
+++ b/src/displayapp/fonts/CMakeLists.txt
@@ -11,6 +11,7 @@    ${CMAKE_CURRENT_BINARY_DIR}/jetbrains_mono_bold_20.c_M.patch COPYONLY)
 if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.12)
    # FindPython3 module introduces with CMake 3.12
    # https://cmake.org/cmake/help/latest/module/FindPython3.html
+   set(Python3_FIND_STRATEGY LOCATION) # https://discourse.cmake.org/t/find-package-python3-is-not-finding-the-correct-python/10563
    find_package(Python3 REQUIRED)
 else()
    set(Python3_EXECUTABLE "python")




diff --git a/src/resources/CMakeLists.txt b/src/resources/CMakeLists.txt
index 3834e854fe569b7c3651b92b6b142dbc427f2966..9181d4a62672c6dd61bb9ee64cdcd5e94be28b9d 100644
--- a/src/resources/CMakeLists.txt
+++ b/src/resources/CMakeLists.txt
@@ -10,6 +10,7 @@
 if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.12)
    # FindPython3 module introduces with CMake 3.12
    # https://cmake.org/cmake/help/latest/module/FindPython3.html
+   set(Python3_FIND_STRATEGY LOCATION) # https://discourse.cmake.org/t/find-package-python3-is-not-finding-the-correct-python/10563
    find_package(Python3 REQUIRED)
 else()
    set(Python3_EXECUTABLE "python")