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.
This commit is contained in:
Ray molenkamp 2022-04-26 11:02:16 -06:00
parent 296b261299
commit 8016d8a4bd
1 changed files with 0 additions and 9 deletions

View File

@ -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()