From: Evgeny Proydakov Date: Fri, 26 Feb 2021 11:31:27 +0000 (+0300) Subject: Returned using find_host_package for PythonInterp 3 instead of find_package. X-Git-Tag: upstream/11.4.0~37^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a990b97d07a644a1706d1d90d258d2a6c891c54f;p=platform%2Fupstream%2Fglslang.git 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 --- 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)