aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/examples/simple
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/examples/simple')
-rw-r--r--cmake/examples/simple/CMakeLists.txt9
-rw-r--r--cmake/examples/simple/foo.cpp6
2 files changed, 15 insertions, 0 deletions
diff --git a/cmake/examples/simple/CMakeLists.txt b/cmake/examples/simple/CMakeLists.txt
new file mode 100644
index 0000000..5f42914
--- /dev/null
+++ b/cmake/examples/simple/CMakeLists.txt
@@ -0,0 +1,9 @@
+cmake_minimum_required(VERSION 3.1)
+
+project(example_simple)
+
+include(../../common.cmake)
+
+add_executable(foo foo.cpp)
+
+install(TARGETS foo RUNTIME DESTINATION bin)
diff --git a/cmake/examples/simple/foo.cpp b/cmake/examples/simple/foo.cpp
new file mode 100644
index 0000000..8b6a1d7
--- /dev/null
+++ b/cmake/examples/simple/foo.cpp
@@ -0,0 +1,6 @@
+#include <iostream>
+
+int main() {
+ std::cout << "Hello, world!\n";
+ return 0;
+}