19 lines
373 B
CMake
19 lines
373 B
CMake
|
set(LLVM_LINK_COMPONENTS
|
||
|
Support
|
||
|
XRay
|
||
|
)
|
||
|
|
||
|
add_llvm_unittest(XRayTests
|
||
|
FDRBlockIndexerTest.cpp
|
||
|
FDRBlockVerifierTest.cpp
|
||
|
FDRProducerConsumerTest.cpp
|
||
|
FDRRecordPrinterTest.cpp
|
||
|
FDRRecordsTest.cpp
|
||
|
FDRTraceWriterTest.cpp
|
||
|
GraphTest.cpp
|
||
|
ProfileTest.cpp
|
||
|
)
|
||
|
|
||
|
add_dependencies(XRayTests intrinsics_gen)
|
||
|
target_link_libraries(XRayTests PRIVATE LLVMTestingSupport)
|