diff options
author | Nico Weber <nicolasweber@gmx.de> | 2018-05-09 00:42:17 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2018-05-09 00:42:17 +0000 |
commit | d4f68bcc16e6afe2db5abc630716eebf67d23a6a (patch) | |
tree | 7bf76cdbcab22c01178b073d82aaa10d0be18090 /llvm/tools/llvm-xray | |
parent | 0590a5bd4b628dba640820b9e329260b5b28235a (diff) | |
download | bcm5719-llvm-d4f68bcc16e6afe2db5abc630716eebf67d23a6a.tar.gz bcm5719-llvm-d4f68bcc16e6afe2db5abc630716eebf67d23a6a.zip |
Inline contents of LLVM_XRAY_TOOLS variable into its only use.
No behavior change.
https://reviews.llvm.org/D46402
llvm-svn: 331830
Diffstat (limited to 'llvm/tools/llvm-xray')
-rw-r--r-- | llvm/tools/llvm-xray/CMakeLists.txt | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/tools/llvm-xray/CMakeLists.txt b/llvm/tools/llvm-xray/CMakeLists.txt index 06002dda7db..66b7f21c43f 100644 --- a/llvm/tools/llvm-xray/CMakeLists.txt +++ b/llvm/tools/llvm-xray/CMakeLists.txt @@ -7,19 +7,15 @@ set(LLVM_LINK_COMPONENTS XRay ) -set(LLVM_XRAY_TOOLS +add_llvm_tool(llvm-xray func-id-helper.cpp + llvm-xray.cpp xray-account.cpp xray-color-helper.cpp xray-converter.cpp xray-extract.cpp - xray-graph.cpp xray-graph-diff.cpp - xray-stacks.cpp + xray-graph.cpp xray-registry.cpp - ) - -add_llvm_tool(llvm-xray - llvm-xray.cpp - ${LLVM_XRAY_TOOLS} + xray-stacks.cpp ) |