Mercurial > hg > orthanc
changeset 6074:03a8e4be45ee
try to fix buildbot errors: EmbedResources.py: not found (3)
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Wed, 02 Apr 2025 17:26:58 +0200 |
parents | 021ff089cf38 |
children | 89fe8a841876 |
files | OrthancFramework/Resources/CMake/OrthancFrameworkConfiguration.cmake |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancFramework/Resources/CMake/OrthancFrameworkConfiguration.cmake Wed Apr 02 16:37:07 2025 +0200 +++ b/OrthancFramework/Resources/CMake/OrthancFrameworkConfiguration.cmake Wed Apr 02 17:26:58 2025 +0200 @@ -43,13 +43,16 @@ include(CheckStructHasMember) include(CheckSymbolExists) include(CheckTypeSize) + +message(WARNING "CMAKE_VERSION: '${CMAKE_VERSION}'") if(CMAKE_VERSION VERSION_GREATER "3.11") find_package(Python REQUIRED COMPONENTS Interpreter) + message(WARNING "Python Executable (1): '${PYTHON_EXECUTABLE}'") else() include(FindPythonInterp) find_package(PythonInterp REQUIRED) + message(WARNING "Python Executable (2): '${PYTHON_EXECUTABLE}'") endif() -message(WARNING "Python Executable: '${PYTHON_EXECUTABLE}'") include(${CMAKE_CURRENT_LIST_DIR}/AutoGeneratedCode.cmake) include(${CMAKE_CURRENT_LIST_DIR}/DownloadPackage.cmake)