xref: /llvm-project/llvm/lib/Transforms/Coroutines/CMakeLists.txt (revision 2670565afc4ec855fa406b8f582dde44ce1739fb)
1add_llvm_component_library(LLVMCoroutines
2  Coroutines.cpp
3  CoroAnnotationElide.cpp
4  CoroCleanup.cpp
5  CoroConditionalWrapper.cpp
6  CoroEarly.cpp
7  CoroElide.cpp
8  CoroFrame.cpp
9  CoroSplit.cpp
10  SuspendCrossingInfo.cpp
11  SpillUtils.cpp
12  MaterializationUtils.cpp
13
14  ADDITIONAL_HEADER_DIRS
15  ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms/Coroutines
16
17  DEPENDS
18  intrinsics_gen
19  LLVMAnalysis
20
21  LINK_COMPONENTS
22  Analysis
23  Core
24  IPO
25  Scalar
26  Support
27  TransformUtils
28  TargetParser
29  )
30