13 lines
282 B
CMake
13 lines
282 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ProfileData
|
|
Support
|
|
)
|
|
|
|
add_llvm_unittest(LLVMProfdataTests
|
|
OutputSizeLimitTest.cpp
|
|
)
|
|
|
|
target_link_libraries(LLVMProfdataTests PRIVATE LLVMTestingSupport)
|
|
|
|
set_property(TARGET LLVMProfdataTests PROPERTY FOLDER "Tests/UnitTests/ToolTests")
|