aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/examples/boost
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/boost
parentcmake/build: remove the --clean parameter (diff)
downloadcmake-common-a2bc2333b474adfde66c6cd67315f227491f157c.tar.gz
cmake-common-a2bc2333b474adfde66c6cd67315f227491f157c.zip
cmake: add examples
Diffstat (limited to 'cmake/examples/boost')
-rw-r--r--cmake/examples/boost/CMakeLists.txt11
-rw-r--r--cmake/examples/boost/foo.cpp8
2 files changed, 19 insertions, 0 deletions
diff --git a/cmake/examples/boost/CMakeLists.txt b/cmake/examples/boost/CMakeLists.txt
new file mode 100644
index 0000000..87fcc4e
--- /dev/null
+++ b/cmake/examples/boost/CMakeLists.txt
@@ -0,0 +1,11 @@
+cmake_minimum_required(VERSION 3.5) # for Boost::* imported targets
+
+project(example_boost)
+
+include(../../common.cmake)
+
+find_package(Boost REQUIRED COMPONENTS filesystem)
+add_executable(foo foo.cpp)
+target_link_libraries(foo PRIVATE Boost::filesystem)
+
+install(TARGETS foo RUNTIME DESTINATION bin)
diff --git a/cmake/examples/boost/foo.cpp b/cmake/examples/boost/foo.cpp
new file mode 100644
index 0000000..258115b
--- /dev/null
+++ b/cmake/examples/boost/foo.cpp
@@ -0,0 +1,8 @@
+#include <boost/filesystem.hpp>
+
+#include <iostream>
+
+int main() {
+ std::cout << boost::filesystem::path{argv0}.absolute().string(); << "\n";
+ return 0;
+}