15 lines
246 B
CMake
15 lines
246 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
Coverage
|
|
ProfileData
|
|
Support
|
|
)
|
|
|
|
add_llvm_unittest(ProfileDataTests
|
|
CoverageMappingTest.cpp
|
|
InstrProfTest.cpp
|
|
SampleProfTest.cpp
|
|
)
|
|
|
|
target_link_libraries(ProfileDataTests PRIVATE LLVMTestingSupport)
|