mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-10 22:43:53 +00:00
![Dean Michael Berris](/assets/img/avatar_default.png)
Summary: In Preparation for graph comparison, this patch breaks out the color choice code from xray-graph into a library and adds polynomials for the Sequential and Difference sets from ColorBrewer. Depends on D29005 Reviewers: dblaikie, chandlerc, dberris Reviewed By: dberris Subscribers: chandlerc, llvm-commits, mgorny Differential Revision: https://reviews.llvm.org/D29363 llvm-svn: 296210
20 lines
340 B
CMake
20 lines
340 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
DebugInfoDWARF
|
|
Object
|
|
Support
|
|
Symbolize
|
|
XRay)
|
|
|
|
set(LLVM_XRAY_TOOLS
|
|
func-id-helper.cc
|
|
xray-account.cc
|
|
xray-color-helper.cc
|
|
xray-converter.cc
|
|
xray-extract.cc
|
|
xray-extract.cc
|
|
xray-graph.cc
|
|
xray-registry.cc)
|
|
|
|
add_llvm_tool(llvm-xray llvm-xray.cc ${LLVM_XRAY_TOOLS})
|