OSDN Git Service

use LLVM's standard CMakeLists.txt layout for llvm-xray
authorNico Weber <nicolasweber@gmx.de>
Thu, 3 May 2018 14:25:57 +0000 (14:25 +0000)
committerNico Weber <nicolasweber@gmx.de>
Thu, 3 May 2018 14:25:57 +0000 (14:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@331455 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-xray/CMakeLists.txt

index ca2937e..06002dd 100644 (file)
@@ -4,7 +4,8 @@ set(LLVM_LINK_COMPONENTS
   Object
   Support
   Symbolize
-  XRay)
+  XRay
+  )
 
 set(LLVM_XRAY_TOOLS
   func-id-helper.cpp
@@ -15,6 +16,10 @@ set(LLVM_XRAY_TOOLS
   xray-graph.cpp
   xray-graph-diff.cpp
   xray-stacks.cpp
-  xray-registry.cpp)
+  xray-registry.cpp
+  )
 
-add_llvm_tool(llvm-xray llvm-xray.cpp ${LLVM_XRAY_TOOLS})
+add_llvm_tool(llvm-xray
+  llvm-xray.cpp
+  ${LLVM_XRAY_TOOLS}
+  )