diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-20 15:42:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-21 15:51:32 +0300 |
commit | b533666099e0c7c8df824b6dd2dd66fa9107a463 (patch) | |
tree | dbde991d15de996e5cc723cfd4c2cfdf32d9fb22 /client/CMakeLists.txt | |
parent | README: update label on Docker badges (diff) | |
download | math-server-b533666099e0c7c8df824b6dd2dd66fa9107a463.tar.gz math-server-b533666099e0c7c8df824b6dd2dd66fa9107a463.zip |
cmake: install() PDB files
Diffstat (limited to 'client/CMakeLists.txt')
-rw-r--r-- | client/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index c6016b5..8455f3b 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -14,3 +14,6 @@ target_link_libraries(client PRIVATE Threads::Threads) set_target_properties(client PROPERTIES OUTPUT_NAME math-client) install(TARGETS client RUNTIME DESTINATION bin) +if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + install(FILES "$<TARGET_PDB_FILE:client>" DESTINATION bin OPTIONAL) +endif() |