diff options
author | José Fonseca <jfonseca@vmware.com> | 2014-05-28 18:14:02 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2014-05-28 18:17:46 +0100 |
commit | d62324f2f9addb573be2c6d55c0b8312ffce6891 (patch) | |
tree | 398ada6a269ff1d15cb55c257b0ecf8c2a58b067 /inject | |
parent | 0a25d024701c3fffd23ea12cb216151e97609521 (diff) |
Revert "cmake: Fix some spurious copy'n'paste code in inject module."
This reverts commit 208689b5c9c08f08adb712d29f0c97dfe4ffaebb.
The target was indeed supposed to have the same name. If this is a
problem for ninja then we'll need to rename things.
Diffstat (limited to 'inject')
-rw-r--r-- | inject/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inject/CMakeLists.txt b/inject/CMakeLists.txt index cf7f3dc7..820438af 100644 --- a/inject/CMakeLists.txt +++ b/inject/CMakeLists.txt @@ -12,4 +12,7 @@ install (TARGETS injectee LIBRARY DESTINATION bin) add_executable (injector injector.cpp ) +set_target_properties (injector PROPERTIES + OUTPUT_NAME inject +) install (TARGETS injector RUNTIME DESTINATION bin) |