Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal committed Jan 26, 2025
1 parent 67a5276 commit ee120ba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions plugins/usd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ else()
include(${CMAKE_SOURCE_DIR}/cmake/f3dPlugin.cmake)
endif()

find_package(pxr 24.08 REQUIRED)
find_package(pxr REQUIRED)

message(STATUS "Plugin: USD found")
if("${PXR_VERSION}" VERSION_LESS "2408")
message(FATAL_ERROR "Plugin: USD: ${PXR_VERSION} is not supported by F3D, please update your USD installation.")
endif()

message(STATUS "Plugin: USD ${PXR_VERSION} found")

f3d_plugin_init()

Expand Down

0 comments on commit ee120ba

Please sign in to comment.