You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If one has Qt4 but not PysideTools (a likely scenario), the build will fail on usdviewq because it calls the PysideTools to wrap usdviewq. Could we add something like this to the usdviewq/CMakeLists.txt file? (Not sure if PYSIDEUICTOOLS_FOUND the right variable to key from, but you get the gist)
if (NOT QT4_FOUND)
message(WARNING "Not building ${PXR_PACKAGE} because of missing dependency: Qt4")
return()
endif()
+if (NOT PYSIDEUICTOOLS_FOUND)
+ message(WARNING "Not building ${PXR_PACKAGE} because of missing dependency: PysideTools")
+ return()
+endif()
+
The text was updated successfully, but these errors were encountered:
This allows the usdImaging component to build on systems that
have Qt4 but not PySide. In such cases, usdview will just not be
available.
FixesPixarAnimationStudios#18
(Internal change: 1646492)
If one has Qt4 but not PysideTools (a likely scenario), the build will fail on usdviewq because it calls the PysideTools to wrap usdviewq. Could we add something like this to the usdviewq/CMakeLists.txt file? (Not sure if PYSIDEUICTOOLS_FOUND the right variable to key from, but you get the gist)
The text was updated successfully, but these errors were encountered: