Fix T75357: USD export broken on windows

Path to the jsons was wrong so they were not copied
This commit is contained in:
Ray molenkamp 2020-04-06 14:38:52 -06:00
parent 71a52bbe2a
commit 29b87b5615
Notes: blender-bot 2023-02-13 22:59:10 +01:00
Referenced by issue #75491, ctest: usd_test fails in a debug configuration
Referenced by issue #75357, USD Export not working - unable to find suitable USD Plugin
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ if(WITH_USD)
set(USD_INCLUDE_DIRS ${LIBDIR}/usd/include)
set(USD_RELEASE_LIB ${LIBDIR}/usd/lib/libusd_m.lib)
set(USD_DEBUG_LIB ${LIBDIR}/usd/lib/libusd_m_d.lib)
set(USD_LIBRARY_DIR ${LIBDIR}/usd/lib/usd)
set(USD_LIBRARY_DIR ${LIBDIR}/usd/lib)
set(USD_LIBRARIES
debug ${USD_DEBUG_LIB}
optimized ${USD_RELEASE_LIB}