Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EMSUSD-875 - MayaUSD : Bump UFE version to v5.0 #3514

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cmake/modules/FindUFE.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ if(UFE_INCLUDE_DIR AND EXISTS "${UFE_INCLUDE_DIR}/ufe/ufe.h")
# Note: the UFE_PATCH_LEVEL will start at 300 and will thus encode the minor version
# of 3 (so we don't use UFE_MINOR_VERSION in this formula).
math(EXPR UFE_PREVIEW_VERSION_NUM "4 * 1000 + ${UFE_PATCH_LEVEL}")
elseif(UFE_VERSION VERSION_EQUAL "5.0.0")
# Temporary. Once next Maya PR is released with UFE v5.0.0 this should
# be removed (along with all the UFE_PREVIEW_VERSION_NUM checks).
set(UFE_PREVIEW_VERSION_NUM 5017)
Comment on lines +67 to +70
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #2819 where I did the same thing for Ufe v4.

endif()

file(STRINGS
Expand Down Expand Up @@ -184,4 +188,4 @@ if(UFE_INCLUDE_DIR AND EXISTS "${UFE_INCLUDE_DIR}/ufe/sceneItem.h")
set(UFE_SCENEITEM_HAS_METADATA TRUE CACHE INTERNAL "ufeSceneItemHasMetaData")
message(STATUS "Maya has UFE SceneItem's meta data interface")
endif()
endif()
endif()