From eea06478bdf78444f40d44ac0e19edb82b07cf83 Mon Sep 17 00:00:00 2001 From: Luca Scheller Date: Wed, 14 Aug 2024 20:16:08 -0700 Subject: [PATCH] Add CMake status messages --- .github/scripts/houdini.py | 4 +--- CMakeLists.txt | 5 +++++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/scripts/houdini.py b/.github/scripts/houdini.py index 9f282fd..17bdf25 100644 --- a/.github/scripts/houdini.py +++ b/.github/scripts/houdini.py @@ -116,9 +116,7 @@ def install_sidefx_product(product, version): if not target_release: raise Exception( - "No Houdini version found for requested version | {}".format( - houdini_version - ) + "No Houdini version found for requested version | {}".format(version) ) target_release_download = sidefx_service.download.get_daily_build_download( diff --git a/CMakeLists.txt b/CMakeLists.txt index b9ca088..597262c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -260,6 +260,11 @@ if(${AR_HTTPRESOLVER_BUILD}) endif() # Status +message(STATUS "--- Usd Resolver Build Info Start ---") +message(NOTICE "Detected Libs:") +message(NOTICE "- Python: ${AR_PYTHON_LIB}") +message(NOTICE "- Boost: Python ${AR_BOOST_PYTHON_LIB}") +message(STATUS "--- Usd Resolver Build Info End ---") message(STATUS "--- Usd Resolver Instructions Start ---") message(NOTICE "To use the compiled files, set the following environment variables:") message(NOTICE "export PYTHONPATH=${CMAKE_INSTALL_PREFIX}//lib/python:$PYTHONPATH")