aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/examples/static
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-01-07 03:26:04 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-01-07 03:26:04 +0300
commita2bc2333b474adfde66c6cd67315f227491f157c (patch)
treeec649e03f10e14f92258e68a1ecbe81febca2af3 /cmake/examples/static
parentcmake/build: remove the --clean parameter (diff)
downloadcmake-common-a2bc2333b474adfde66c6cd67315f227491f157c.tar.gz
cmake-common-a2bc2333b474adfde66c6cd67315f227491f157c.zip
cmake: add examples
Diffstat (limited to 'cmake/examples/static')
-rw-r--r--cmake/examples/static/CMakeLists.txt13
-rw-r--r--cmake/examples/static/bar.cpp7
-rw-r--r--cmake/examples/static/bar.hpp3
-rw-r--r--cmake/examples/static/foo.cpp6
4 files changed, 29 insertions, 0 deletions
diff --git a/cmake/examples/static/CMakeLists.txt b/cmake/examples/static/CMakeLists.txt
new file mode 100644
index 0000000..5b76e22
--- /dev/null
+++ b/cmake/examples/static/CMakeLists.txt
@@ -0,0 +1,13 @@
+cmake_minimum_required(VERSION 3.1)
+
+project(example_static)
+
+include(../../common.cmake)
+
+add_library(bar bar.cpp)
+target_include_directories(bar PUBLIC .)
+
+add_executable(foo foo.cpp)
+target_link_libraries(foo PRIVATE bar)
+
+install(TARGETS foo bar RUNTIME DESTINATION bin ARCHIVE DESTINATION lib)
diff --git a/cmake/examples/static/bar.cpp b/cmake/examples/static/bar.cpp
new file mode 100644
index 0000000..37aa9b5
--- /dev/null
+++ b/cmake/examples/static/bar.cpp
@@ -0,0 +1,7 @@
+#include "bar.hpp"
+
+#include <iostream>
+
+void bar() {
+ std::cout << "bar\n";
+}
diff --git a/cmake/examples/static/bar.hpp b/cmake/examples/static/bar.hpp
new file mode 100644
index 0000000..a3ea4c1
--- /dev/null
+++ b/cmake/examples/static/bar.hpp
@@ -0,0 +1,3 @@
+#pragma once
+
+void bar();
diff --git a/cmake/examples/static/foo.cpp b/cmake/examples/static/foo.cpp
new file mode 100644
index 0000000..c6355a2
--- /dev/null
+++ b/cmake/examples/static/foo.cpp
@@ -0,0 +1,6 @@
+#include <bar.hpp>
+
+int main() {
+ bar();
+ return 0;
+}