You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2017/03/15 17:51:06 UTC

[05/34] geode-native git commit: GEODE-2636: Ensure reasonable default library names.

GEODE-2636: Ensure reasonable default library names.

This closes #50


Project: http://git-wip-us.apache.org/repos/asf/geode-native/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode-native/commit/78365495
Tree: http://git-wip-us.apache.org/repos/asf/geode-native/tree/78365495
Diff: http://git-wip-us.apache.org/repos/asf/geode-native/diff/78365495

Branch: refs/heads/feature/GEODE-2602
Commit: 7836549522817c97b6a319b19353265eaf3257c5
Parents: db9d541
Author: Sarge <md...@pivotal.io>
Authored: Thu Mar 9 13:12:09 2017 -0800
Committer: Anthony Baker <ab...@apache.org>
Committed: Thu Mar 9 13:15:04 2017 -0800

----------------------------------------------------------------------
 src/quickstart/cpp/CMakeLists.txt | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode-native/blob/78365495/src/quickstart/cpp/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/quickstart/cpp/CMakeLists.txt b/src/quickstart/cpp/CMakeLists.txt
index e02e4c2..67ed69e 100644
--- a/src/quickstart/cpp/CMakeLists.txt
+++ b/src/quickstart/cpp/CMakeLists.txt
@@ -26,6 +26,9 @@ elseif(UNIX)
     set(DYNAMIC_LIBRARY_PATH LD_LIBRARY_PATH=${NATIVECLIENT_DIR}/lib)
 endif()
 
+set(PRODUCT_LIB_NAME "apache-geode" CACHE STRING "Binary name")
+set(PRODUCT_DLL_NAME "Apache.Geode" CACHE STRING ".Net Binary name")
+
 set(CMAKE_CXX_STANDARD 11)
 set(CMAKE_CXX_STANDARD_REQUIRED ON)