diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 21:30:19 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 21:30:19 +0300 |
commit | e4bc69ee20aac36860407c687969fbd6c72771d9 (patch) | |
tree | 3134b9a9998c492b9c0490d3575f43e58a33888a /client/CMakeLists.txt | |
parent | README: update (diff) | |
download | math-server-e4bc69ee20aac36860407c687969fbd6c72771d9.tar.gz math-server-e4bc69ee20aac36860407c687969fbd6c72771d9.zip |
cmake: use install_pdbs()
Diffstat (limited to '')
-rw-r--r-- | client/CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index f9765bd..0343ee2 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -14,6 +14,4 @@ target_link_libraries(client PRIVATE Boost::program_options) install(TARGETS client RUNTIME DESTINATION bin) -if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$<TARGET_PDB_FILE:client>" DESTINATION bin OPTIONAL) -endif() +install_pdbs(TARGETS client DESTINATION bin) |