diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-25 00:38:36 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-25 00:38:36 +0300 |
commit | 0f02cd5c99d6759164a0ab362de4de93fee3c3f5 (patch) | |
tree | e8fae3789837ebb04f9a67c761c999639b9c6530 /um/wrappers/special/nt_namespace/utils | |
parent | update cmake-common (diff) | |
download | windows7-drivers-0f02cd5c99d6759164a0ab362de4de93fee3c3f5.tar.gz windows7-drivers-0f02cd5c99d6759164a0ab362de4de93fee3c3f5.zip |
cmake: use install_pdbs()
Diffstat (limited to 'um/wrappers/special/nt_namespace/utils')
-rw-r--r-- | um/wrappers/special/nt_namespace/utils/CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/um/wrappers/special/nt_namespace/utils/CMakeLists.txt b/um/wrappers/special/nt_namespace/utils/CMakeLists.txt index a40b6e4..46e9b5e 100644 --- a/um/wrappers/special/nt_namespace/utils/CMakeLists.txt +++ b/um/wrappers/special/nt_namespace/utils/CMakeLists.txt @@ -7,6 +7,4 @@ 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() +install_pdbs(TARGETS nt_namespace_convert DESTINATION bin) |