aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/wrappers
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-21 17:47:25 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-22 09:45:52 +0300
commite82587774cec8c05c61e52e94d60057d98cd45e5 (patch)
tree483f7c20c0641b606e04b1458d08307d5efd1492 /um/wrappers
parentupdate cmake-common (diff)
downloadwindows7-drivers-e82587774cec8c05c61e52e94d60057d98cd45e5.tar.gz
windows7-drivers-e82587774cec8c05c61e52e94d60057d98cd45e5.zip
cmake: install() PDB files
Diffstat (limited to 'um/wrappers')
-rw-r--r--um/wrappers/simple/utils/CMakeLists.txt3
-rw-r--r--um/wrappers/special/nt_namespace/utils/CMakeLists.txt3
2 files changed, 6 insertions, 0 deletions
diff --git a/um/wrappers/simple/utils/CMakeLists.txt b/um/wrappers/simple/utils/CMakeLists.txt
index 7c2a70d..c266f83 100644
--- a/um/wrappers/simple/utils/CMakeLists.txt
+++ b/um/wrappers/simple/utils/CMakeLists.txt
@@ -3,3 +3,6 @@ target_link_libraries(simple_exchange_ints PRIVATE simple)
set_target_properties(simple_exchange_ints PROPERTIES OUTPUT_NAME exchange_ints)
install(TARGETS simple_exchange_ints RUNTIME DESTINATION bin)
+if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
+ install(FILES "$<TARGET_PDB_FILE:simple_exchange_ints>" DESTINATION bin OPTIONAL)
+endif()
diff --git a/um/wrappers/special/nt_namespace/utils/CMakeLists.txt b/um/wrappers/special/nt_namespace/utils/CMakeLists.txt
index 5d354ce..a40b6e4 100644
--- a/um/wrappers/special/nt_namespace/utils/CMakeLists.txt
+++ b/um/wrappers/special/nt_namespace/utils/CMakeLists.txt
@@ -7,3 +7,6 @@ if(MINGW)
endif()
install(TARGETS nt_namespace_convert RUNTIME DESTINATION bin)
+if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
+ install(FILES "$<TARGET_PDB_FILE:nt_namespace_convert>" DESTINATION bin OPTIONAL)
+endif()