deps_builder: add missing OSLNoise library on windows

OSLNoise is a new library, was missing in the debug
configuration on windows.
This commit is contained in:
Ray molenkamp 2022-10-20 18:31:15 -06:00
parent 6515177981
commit dc09cc13ea
Notes: blender-bot 2023-02-14 05:53:38 +01:00
Referenced by issue #102058, Make instances real creates more geometry than there are as instances
1 changed files with 1 additions and 0 deletions

View File

@ -83,6 +83,7 @@ if(WIN32)
COMMAND ${CMAKE_COMMAND} -E copy ${LIBDIR}/osl/lib/oslcomp.lib ${HARVEST_TARGET}/osl/lib/oslcomp_d.lib
COMMAND ${CMAKE_COMMAND} -E copy ${LIBDIR}/osl/lib/oslexec.lib ${HARVEST_TARGET}/osl/lib/oslexec_d.lib
COMMAND ${CMAKE_COMMAND} -E copy ${LIBDIR}/osl/lib/oslquery.lib ${HARVEST_TARGET}/osl/lib/oslquery_d.lib
COMMAND ${CMAKE_COMMAND} -E copy ${LIBDIR}/osl/lib/oslnoise.lib ${HARVEST_TARGET}/osl/lib/oslnoise_d.lib
DEPENDEES install
)
endif()