From cb65416438fae40ca81e375f2b00daa03c79e0a1 Mon Sep 17 00:00:00 2001 From: Mike Martell Date: Thu, 28 Feb 2019 07:42:39 -0800 Subject: [PATCH] GEODE-6469: Don't install cryptoimpl.lib on Windows. --- cryptoimpl/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cryptoimpl/CMakeLists.txt b/cryptoimpl/CMakeLists.txt index 0c8a445b85..3ae1575690 100644 --- a/cryptoimpl/CMakeLists.txt +++ b/cryptoimpl/CMakeLists.txt @@ -50,8 +50,7 @@ add_clangformat(cryptoImpl) if ("Windows" STREQUAL ${CMAKE_SYSTEM_NAME} ) install(TARGETS cryptoImpl - RUNTIME DESTINATION bin - ARCHIVE DESTINATION lib) + RUNTIME DESTINATION bin) else() install (TARGETS cryptoImpl DESTINATION lib) endif()