[Bf-blender-cvs] [8016d8a4bd2] master: deps_builder/robinmap: remove file copy on windows

Ray Molenkamp noreply at git.blender.org
Tue Apr 26 19:02:14 CEST 2022


Commit: 8016d8a4bd21b2c113f0e2c9252d658cd48a5bd8
Author: Ray Molenkamp
Date:   Tue Apr 26 11:02:16 2022 -0600
Branches: master
https://developer.blender.org/rB8016d8a4bd21b2c113f0e2c9252d658cd48a5bd8

deps_builder/robinmap: remove file copy on windows

- It's not needed, since it's a build time dependency only.
- It was setup to copy to the wrong folder.

===================================================================

M	build_files/build_environment/cmake/robinmap.cmake

===================================================================

diff --git a/build_files/build_environment/cmake/robinmap.cmake b/build_files/build_environment/cmake/robinmap.cmake
index c2292ae8bb3..6c4ed309b4d 100644
--- a/build_files/build_environment/cmake/robinmap.cmake
+++ b/build_files/build_environment/cmake/robinmap.cmake
@@ -11,12 +11,3 @@ ExternalProject_Add(external_robinmap
   CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${LIBDIR}/robinmap ${DEFAULT_CMAKE_FLAGS} ${ROBINMAP_EXTRA_ARGS}
   INSTALL_DIR ${LIBDIR}/robinmap
 )
-
-if(WIN32)
-  if(BUILD_MODE STREQUAL Release)
-    ExternalProject_Add_Step(external_robinmap after_install
-      COMMAND ${CMAKE_COMMAND} -E copy_directory ${LIBDIR}/zstd/include/ ${HARVEST_TARGET}/zstd/include/
-      DEPENDEES install
-    )
-  endif()
-endif()



More information about the Bf-blender-cvs mailing list