Skip to content

Commit

Permalink
Add CMake status messages
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Aug 15, 2024
1 parent cf0a8ff commit eea0647
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .github/scripts/houdini.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}/<resolverName>/lib/python:$PYTHONPATH")
Expand Down

0 comments on commit eea0647

Please sign in to comment.