xref: /llvm-project/llvm/unittests/Transforms/Instrumentation/CMakeLists.txt (revision bfa3ffb1e2d7c976c4db10dbdd8f5d09976c63be)
1set(LLVM_LINK_COMPONENTS
2  Analysis
3  AsmParser
4  Core
5  Instrumentation
6  Passes
7  ProfileData
8  Support
9)
10
11add_llvm_unittest(InstrumentationTests
12  MemProfUseTest.cpp
13  PGOInstrumentationTest.cpp
14  )
15
16target_link_libraries(InstrumentationTests PRIVATE LLVMTestingSupport)
17
18set_property(TARGET InstrumentationTests PROPERTY FOLDER "Tests/UnitTests/TransformTests")
19