From 9989c9f8f1fac87798160203b8e674cbc44f5ff6 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 28 Oct 2020 20:57:35 +0300 Subject: common.cmake: add install_pdbs() --- examples/boost/CMakeLists.txt | 4 +--- examples/dynamic/CMakeLists.txt | 4 +--- examples/simple/CMakeLists.txt | 4 +--- examples/static/CMakeLists.txt | 4 +--- 4 files changed, 4 insertions(+), 12 deletions(-) (limited to 'examples') diff --git a/examples/boost/CMakeLists.txt b/examples/boost/CMakeLists.txt index 8c076c9..c4d5edb 100644 --- a/examples/boost/CMakeLists.txt +++ b/examples/boost/CMakeLists.txt @@ -9,6 +9,4 @@ add_executable(foo foo.cpp) target_link_libraries(foo PRIVATE Boost::disable_autolinking Boost::filesystem) install(TARGETS foo RUNTIME DESTINATION bin) -if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$" DESTINATION bin OPTIONAL) -endif() +install_pdbs(TARGETS foo DESTINATION bin) diff --git a/examples/dynamic/CMakeLists.txt b/examples/dynamic/CMakeLists.txt index 4602adb..190b1c9 100644 --- a/examples/dynamic/CMakeLists.txt +++ b/examples/dynamic/CMakeLists.txt @@ -11,6 +11,4 @@ add_executable(foo foo.cpp) target_link_libraries(foo PRIVATE baz) install(TARGETS foo baz RUNTIME DESTINATION bin LIBRARY DESTINATION lib) -if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$" "$" DESTINATION bin OPTIONAL) -endif() +install_pdbs(TARGETS foo baz DESTINATION bin) diff --git a/examples/simple/CMakeLists.txt b/examples/simple/CMakeLists.txt index 4f8859e..268b5db 100644 --- a/examples/simple/CMakeLists.txt +++ b/examples/simple/CMakeLists.txt @@ -7,6 +7,4 @@ include(../../common.cmake) add_executable(foo foo.cpp) install(TARGETS foo RUNTIME DESTINATION bin) -if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$" DESTINATION bin OPTIONAL) -endif() +install_pdbs(TARGETS foo DESTINATION bin) diff --git a/examples/static/CMakeLists.txt b/examples/static/CMakeLists.txt index 8a6acb8..e418aab 100644 --- a/examples/static/CMakeLists.txt +++ b/examples/static/CMakeLists.txt @@ -11,6 +11,4 @@ add_executable(foo foo.cpp) target_link_libraries(foo PRIVATE bar) install(TARGETS foo bar RUNTIME DESTINATION bin ARCHIVE DESTINATION lib) -if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$" DESTINATION bin OPTIONAL) -endif() +install_pdbs(TARGETS foo DESTINATION bin) -- cgit v1.2.3