1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/unittests/XRay/CMakeLists.txt
Dean Michael Berris cc37553db4 [XRay] A graph Class for the llvm-xray graph
Summary:
In preparation for graph comparison and filtering, this is a library for
representing graphs in LLVM. This will enable easier encapsulation and reuse
of graphs in llvm-xray.

Depends on D28999, D28225

Reviewers: dblaikie, dberris

Reviewed By: dberris

Subscribers: mgorny, llvm-commits

Differential Revision: https://reviews.llvm.org/D29005

llvm-svn: 294717
2017-02-10 06:36:08 +00:00

14 lines
170 B
CMake

set(LLVM_LINK_COMPONENTS
Support
)
set(XRAYSources
GraphTest.cpp
)
add_llvm_unittest(XRayTests
${XRAYSources}
)
add_dependencies(XRayTests intrinsics_gen)