You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bb...@apache.org on 2020/08/24 23:56:30 UTC

[geode-native] branch develop updated: GEODE-8445: Remove copy step for cryptoimpl library (#640)

This is an automated email from the ASF dual-hosted git repository.

bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 03ccf6f  GEODE-8445: Remove copy step for cryptoimpl library (#640)
03ccf6f is described below

commit 03ccf6feac7684f821beeb002f7d751c4961c46f
Author: Blake Bender <bb...@pivotal.io>
AuthorDate: Mon Aug 24 16:56:18 2020 -0700

    GEODE-8445: Remove copy step for cryptoimpl library (#640)
    
    SSL support is now built-in rather than in its own library.
---
 examples/dotnet/sslputget/CMakeLists.txt.in | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/examples/dotnet/sslputget/CMakeLists.txt.in b/examples/dotnet/sslputget/CMakeLists.txt.in
index 021b2f1..e782e43 100644
--- a/examples/dotnet/sslputget/CMakeLists.txt.in
+++ b/examples/dotnet/sslputget/CMakeLists.txt.in
@@ -40,9 +40,3 @@ set_target_properties(${PROJECT_NAME} PROPERTIES
     VS_DOTNET_TARGET_FRAMEWORK_VERSION "v4.5.2"
     VS_DOTNET_REFERENCES "System"
 )
-
-add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
-  COMMAND ${CMAKE_COMMAND} -E copy
-    $<SHELL_PATH:$<TARGET_FILE:@PRODUCT_NAME_NOSPACE@::crypto>>
-    $<SHELL_PATH:$<TARGET_FILE_DIR:${PROJECT_NAME}>>
-)