This is an automated email from the ASF dual-hosted git repository.
igodwin 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 5877b7b GEODE-4339: fix build (#459)
5877b7b is described below
commit 5877b7b5b71b2973b9dbe7e7f2e1807b47c212c7
Author: Blake Bender <[email protected]>
AuthorDate: Sun Mar 10 21:39:48 2019 -0700
GEODE-4339: fix build (#459)
* Fix dotnet ssl example CMakeLists.txt
Co-authored-by: Matthew Reddington <[email protected]>
---
examples/dotnet/sslputget/CMakeLists.txt.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/examples/dotnet/sslputget/CMakeLists.txt.in
b/examples/dotnet/sslputget/CMakeLists.txt.in
index 7152046..4142fb7 100644
--- a/examples/dotnet/sslputget/CMakeLists.txt.in
+++ b/examples/dotnet/sslputget/CMakeLists.txt.in
@@ -19,7 +19,7 @@ project(dotnet-sslputget LANGUAGES CSharp)
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/../../cmake)
-find_package(GeodeNative REQUIRED COMPONENTS dotnet crypto)
+find_package(@PRODUCT_NAME_NOSPACE@ REQUIRED COMPONENTS dotnet crypto)
add_executable(${PROJECT_NAME} Program.cs)
@@ -33,7 +33,7 @@ file(GLOB SSL_CERTIFICATES
file(INSTALL ${SSL_CERTIFICATES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
target_link_libraries(${PROJECT_NAME}
- GeodeNative::dotnet
+ @PRODUCT_NAME_NOSPACE@::dotnet
)
set_target_properties(${PROJECT_NAME} PROPERTIES