We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78042e9 commit 4b862c0Copy full SHA for 4b862c0
1 file changed
cmake/macros/Private.cmake
@@ -689,6 +689,11 @@ function(_pxr_add_rpath rpathRef target)
689
endfunction()
690
691
function(_pxr_install_rpath rpathRef NAME)
692
+ if (PXR_BUILD_APPLE_FRAMEWORK)
693
+ # Apple Frameworks already fix the install path at the end
694
+ # so this maks things faster and reduces duplication errors
695
+ return()
696
+ endif()
697
# Get and remove the origin.
698
list(GET ${rpathRef} 0 origin)
699
set(rpath ${${rpathRef}})
0 commit comments