Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2022-10-11 18:14:10 +0300
committerRay Molenkamp <github@lazydodo.com>2022-10-11 18:14:10 +0300
commit4fc4005f6b70a428de4538a2cad42ceb292a306a (patch)
tree96877bc529f94534108ccae648cdb62ca93fc4a8 /build_files
parent0048820df8ee605d861a2dbc7f05823723dd5b36 (diff)
deps_builder: add missing openpgl config file
harvesting openpgl_Exports-debug.cmake was missing for windows in the build script, and we manually added it to svn when openpgl landed when we realized it was missing. This fixes the issue at the root of the problem, so the file will not be missing for future updates.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/build_environment/cmake/openpgl.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/build_files/build_environment/cmake/openpgl.cmake b/build_files/build_environment/cmake/openpgl.cmake
index e6b0cd8eb4a..18dd5c5399a 100644
--- a/build_files/build_environment/cmake/openpgl.cmake
+++ b/build_files/build_environment/cmake/openpgl.cmake
@@ -43,6 +43,7 @@ if(WIN32)
else()
ExternalProject_Add_Step(external_openpgl after_install
COMMAND ${CMAKE_COMMAND} -E copy ${LIBDIR}/openpgl/lib/openpgl_d.lib ${HARVEST_TARGET}/openpgl/lib/openpgl_d.lib
+ COMMAND ${CMAKE_COMMAND} -E copy ${LIBDIR}/openpgl/lib/cmake/openpgl-${OPENPGL_SHORT_VERSION}/openpgl_Exports-debug.cmake ${HARVEST_TARGET}/openpgl/lib/cmake/openpgl-${OPENPGL_SHORT_VERSION}/openpgl_Exports-debug.cmake
DEPENDEES install
)
endif()