diff options
author | José Fonseca <jfonseca@vmware.com> | 2014-10-02 15:48:35 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2014-10-02 15:48:35 +0100 |
commit | 01e5c8561150f4f797d23b2df76edecf9efd8f51 (patch) | |
tree | 68991f89903f9807db3a1ba33e33e01e2960fb7e /inject | |
parent | 61c46938b7bb95de0dbd0b90cd76c84509d61307 (diff) |
cmake: Package/install .PDB files too.
Diffstat (limited to 'inject')
-rw-r--r-- | inject/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/inject/CMakeLists.txt b/inject/CMakeLists.txt index 9ecb9931..43749e15 100644 --- a/inject/CMakeLists.txt +++ b/inject/CMakeLists.txt @@ -7,6 +7,7 @@ set_target_properties (injectee PROPERTIES PREFIX "" ) install (TARGETS injectee LIBRARY DESTINATION bin) +install_pdb (injectee DESTINATION bin) add_executable (injector injector.cpp @@ -16,3 +17,4 @@ set_target_properties (injector PROPERTIES ) target_link_libraries (injector psapi) install (TARGETS injector RUNTIME DESTINATION bin) +install_pdb (injector DESTINATION bin) |