diff options
Diffstat (limited to 'utils/CMakeLists.txt')
-rw-r--r-- | utils/CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index 712a9e8..6f469a8 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -5,9 +5,7 @@ function(add_util name src) target_link_libraries("${name}" PRIVATE pdb_repo) target_link_libraries("${name}" PRIVATE Boost::disable_autolinking Boost::filesystem Boost::nowide Boost::program_options) install(TARGETS "${name}" RUNTIME DESTINATION bin) - if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$<TARGET_PDB_FILE:${name}>" DESTINATION bin OPTIONAL) - endif() + install_pdbs(TARGETS "${name}" DESTINATION bin) endfunction() add_util(enum_symbols enum_symbols.cpp command_line.hpp pdb_descr.hpp) |