diff options
author | Nico Weber <nicolasweber@gmx.de> | 2018-05-03 14:25:57 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2018-05-03 14:25:57 +0000 |
commit | 0133a11977d063838c4603645b7b276f77e2b117 (patch) | |
tree | d8f7b87495c0f55398448d7564ca0bc70e582c84 /llvm/tools/llvm-xray | |
parent | 63ac19365aa659b8225f8ea5b8de6d1df01d020b (diff) | |
download | bcm5719-llvm-0133a11977d063838c4603645b7b276f77e2b117.tar.gz bcm5719-llvm-0133a11977d063838c4603645b7b276f77e2b117.zip |
use LLVM's standard CMakeLists.txt layout for llvm-xray
llvm-svn: 331455
Diffstat (limited to 'llvm/tools/llvm-xray')
-rw-r--r-- | llvm/tools/llvm-xray/CMakeLists.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/llvm/tools/llvm-xray/CMakeLists.txt b/llvm/tools/llvm-xray/CMakeLists.txt index ca2937e01f1..06002dda7db 100644 --- a/llvm/tools/llvm-xray/CMakeLists.txt +++ b/llvm/tools/llvm-xray/CMakeLists.txt @@ -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} + ) |