From a2bc2333b474adfde66c6cd67315f227491f157c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 7 Jan 2020 03:26:04 +0300 Subject: cmake: add examples --- cmake/examples/dynamic/CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 cmake/examples/dynamic/CMakeLists.txt (limited to 'cmake/examples/dynamic/CMakeLists.txt') diff --git a/cmake/examples/dynamic/CMakeLists.txt b/cmake/examples/dynamic/CMakeLists.txt new file mode 100644 index 0000000..013cde1 --- /dev/null +++ b/cmake/examples/dynamic/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.1) + +project(example_dynamic) + +include(../../common.cmake) + +add_library(bar SHARED 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 LIBRARY DESTINATION lib) -- cgit v1.2.3