mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
38 lines
613 B
CMake
38 lines
613 B
CMake
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
revng_add_library_internal(revngPipes
|
|
SHARED
|
|
CompileModulePipe.cpp
|
|
FileContainer.cpp
|
|
LiftPipe.cpp
|
|
LinkForTranslationPipe.cpp
|
|
LinkSupportPipe.cpp
|
|
LLVMContextWrapper.cpp
|
|
ModelGlobal.cpp
|
|
PipelineManager.cpp
|
|
Pipes.cpp
|
|
RootKind.cpp
|
|
TaggedFunctionKind.cpp
|
|
)
|
|
|
|
llvm_map_components_to_libnames(LLVM_LIBRARIES
|
|
Core
|
|
IPO
|
|
MC
|
|
Support
|
|
X86AsmParser
|
|
X86CodeGen
|
|
X86Desc
|
|
X86Info
|
|
)
|
|
|
|
target_link_libraries(revngPipes
|
|
revngEarlyFunctionAnalysis
|
|
revngLift
|
|
revngPipeline
|
|
revngSupport
|
|
${LLVM_LIBRARIES}
|
|
)
|