# HG changeset patch # User Alain Mazy # Date 1743607618 -7200 # Node ID 03a8e4be45ee8eba17ef3ab4137c2435cdf633e3 # Parent 021ff089cf38c0cde5cc831b8c2f3680662f7669 try to fix buildbot errors: EmbedResources.py: not found (3) diff -r 021ff089cf38 -r 03a8e4be45ee OrthancFramework/Resources/CMake/OrthancFrameworkConfiguration.cmake --- 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)