diff options
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 065571c..00ce324 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,4 +31,8 @@ if(MINGW) endif() install(TARGETS privilege_check RUNTIME DESTINATION bin) +if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + install(FILES "$<TARGET_PDB_FILE:privilege_check>" DESTINATION bin OPTIONAL) +endif() + install(FILES README.md LICENSE.txt DESTINATION share) |