From 7b46d443b0418b4b7a4b66e046a3dc28585821d0 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 8 Jan 2020 03:32:39 +0300 Subject: cmake/examples: more distinct output --- cmake/examples/dynamic/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cmake/examples/dynamic/CMakeLists.txt') diff --git a/cmake/examples/dynamic/CMakeLists.txt b/cmake/examples/dynamic/CMakeLists.txt index 013cde1..1a602d6 100644 --- a/cmake/examples/dynamic/CMakeLists.txt +++ b/cmake/examples/dynamic/CMakeLists.txt @@ -4,10 +4,10 @@ project(example_dynamic) include(../../common.cmake) -add_library(bar SHARED bar.cpp) -target_include_directories(bar PUBLIC .) +add_library(baz SHARED baz.cpp) +target_include_directories(baz PUBLIC .) add_executable(foo foo.cpp) -target_link_libraries(foo PRIVATE bar) +target_link_libraries(foo PRIVATE baz) -install(TARGETS foo bar RUNTIME DESTINATION bin LIBRARY DESTINATION lib) +install(TARGETS foo baz RUNTIME DESTINATION bin LIBRARY DESTINATION lib) -- cgit v1.2.3