mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
21 lines
545 B
CMake
21 lines
545 B
CMake
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
add_subdirectory(ABIAnalyses)
|
|
|
|
revng_add_analyses_library_internal(
|
|
revngEarlyFunctionAnalysis
|
|
AAWriterPass.cpp
|
|
ABIDetectionPass.cpp
|
|
IndirectBranchInfoPrinterPass.cpp
|
|
PromoteGlobalToLocalVars.cpp
|
|
SegregateDirectStackAccesses.cpp
|
|
EarlyFunctionAnalysis.cpp)
|
|
|
|
llvm_map_components_to_libnames(LLVM_LIBRARIES Analysis)
|
|
|
|
target_link_libraries(
|
|
revngEarlyFunctionAnalysis revngBasicAnalyses revngABIAnalyses revngSupport
|
|
revngModel ${LLVM_LIBRARIES})
|