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-04-26 20:02:16 +0300
committerRay Molenkamp <github@lazydodo.com>2022-04-26 20:02:16 +0300
commit8016d8a4bd21b2c113f0e2c9252d658cd48a5bd8 (patch)
treef2675a6f1a538e734e50900a6ae35fabb53d51cc /build_files
parent296b2612990d02fed88e92807b550954a723a40b (diff)
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.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/build_environment/cmake/robinmap.cmake9
1 files changed, 0 insertions, 9 deletions
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()