[Lldb-commits] [PATCH] D29126: [cmake] Remove VERSION property from executable targets

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 25 07:08:16 PST 2017


labath created this revision.
Herald added a subscriber: ki.stfu.

Currently, in the default configuration, the "install" target will
install all llvm executables unversioned, except for three lldb tools
which will be installed versioned (with a non-versioned symlink). This
rectifies that situation.


https://reviews.llvm.org/D29126

Files:
  tools/driver/CMakeLists.txt
  tools/lldb-mi/CMakeLists.txt
  tools/lldb-server/CMakeLists.txt


Index: tools/lldb-server/CMakeLists.txt
===================================================================
--- tools/lldb-server/CMakeLists.txt
+++ tools/lldb-server/CMakeLists.txt
@@ -192,5 +192,3 @@
 endif()
 
 target_link_libraries(lldb-server ${LLDB_SYSTEM_LIBS})
-
-set_target_properties(lldb-server PROPERTIES VERSION ${LLDB_VERSION})
Index: tools/lldb-mi/CMakeLists.txt
===================================================================
--- tools/lldb-mi/CMakeLists.txt
+++ tools/lldb-mi/CMakeLists.txt
@@ -90,5 +90,3 @@
 if (HAVE_LIBPTHREAD)
   target_link_libraries(lldb-mi pthread)
 endif ()
-
-set_target_properties(lldb-mi PROPERTIES VERSION ${LLDB_VERSION})
Index: tools/driver/CMakeLists.txt
===================================================================
--- tools/driver/CMakeLists.txt
+++ tools/driver/CMakeLists.txt
@@ -29,6 +29,3 @@
   # soon as possible.
   target_link_libraries(lldb ${LLDB_USED_LIBS})
 endif()
-
-set_target_properties(lldb PROPERTIES VERSION ${LLDB_VERSION})
-


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29126.85751.patch
Type: text/x-patch
Size: 1007 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20170125/06355799/attachment.bin>


More information about the lldb-commits mailing list