From a990b97d07a644a1706d1d90d258d2a6c891c54f Mon Sep 17 00:00:00 2001 From: Evgeny Proydakov Date: Fri, 26 Feb 2021 14:31:27 +0300 Subject: [PATCH] Returned using find_host_package for PythonInterp 3 instead of find_package. I changed this logic here: https://github.com/KhronosGroup/glslang/pull/2526/commits/05798c17fb17d339d66e064a407e75ceae4c0316 It was originally fixed here: https://github.com/KhronosGroup/glslang/commit/967fa92d14acea305267574faf63ebe753de98c4 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c76454d..9ed5265 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -297,7 +297,7 @@ else() endif() if(BUILD_EXTERNAL AND IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/External) - find_package(PythonInterp 3 REQUIRED) + find_host_package(PythonInterp 3 REQUIRED) # We depend on these for later projects, so they should come first. add_subdirectory(External) -- 2.7.4