xref: /llvm-project/llvm/lib/ProfileData/CMakeLists.txt (revision fc8775e2142c6bd7876831c27c3fbef0d64860bc)
1add_llvm_component_library(LLVMProfileData
2  GCOV.cpp
3  InstrProf.cpp
4  InstrProfCorrelator.cpp
5  InstrProfReader.cpp
6  InstrProfWriter.cpp
7  ItaniumManglingCanonicalizer.cpp
8  MemProf.cpp
9  MemProfReader.cpp
10  PGOCtxProfReader.cpp
11  PGOCtxProfWriter.cpp
12  ProfileSummaryBuilder.cpp
13  SampleProf.cpp
14  SampleProfReader.cpp
15  SampleProfWriter.cpp
16  SymbolRemappingReader.cpp
17
18  ADDITIONAL_HEADER_DIRS
19  ${LLVM_MAIN_INCLUDE_DIR}/llvm/ProfileData
20
21  DEPENDS
22  intrinsics_gen
23
24  LINK_COMPONENTS
25  BitstreamReader
26  Core
27  Object
28  Support
29  Demangle
30  Symbolize
31  DebugInfoDWARF
32  TargetParser
33  )
34
35add_subdirectory(Coverage)
36