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

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

commit b3d958df8acacc9ed0054eb94804055bfd015515
Author: Ryan McMahon <mcmella...@gmail.com>
AuthorDate: Thu Feb 15 17:11:17 2018 -0800

    GEODE-4341: Added cmake files for examples
---
 .../CMakeLists.txt                                 | 29 ++++++++++++++++++++++
 examples/dotnet/CMakeLists.txt                     | 18 ++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/examples/dotnet/Apache.Geode.Examples.PutGetRemove/CMakeLists.txt 
b/examples/dotnet/Apache.Geode.Examples.PutGetRemove/CMakeLists.txt
new file mode 100644
index 0000000..39ba4aa
--- /dev/null
+++ b/examples/dotnet/Apache.Geode.Examples.PutGetRemove/CMakeLists.txt
@@ -0,0 +1,29 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+cmake_minimum_required(VERSION 3.8.2)
+
+project(PutGetRemove CSharp)
+
+add_executable(${PROJECT_NAME} 
+    Program.cs)
+
+target_link_libraries(${PROJECT_NAME}
+    ${CMAKE_CURRENT_SOURCE_DIR}/../../../bin/Pivotal.Gemfire.dll)
+
+set_property(TARGET PutGetRemove PROPERTY VS_DOTNET_REFERENCES
+    "System"
+    "Pivotal.Gemfire")
+    
diff --git a/examples/dotnet/CMakeLists.txt b/examples/dotnet/CMakeLists.txt
new file mode 100644
index 0000000..dda8923
--- /dev/null
+++ b/examples/dotnet/CMakeLists.txt
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+cmake_minimum_required(VERSION 3.4)
+project(examples)
+
+add_subdirectory(Apache.Geode.Examples.PutGetRemove)

-- 
To stop receiving notification emails like this one, please contact
echobr...@apache.org.

Reply via email to