mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
29 lines
512 B
CMake
29 lines
512 B
CMake
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
revng_add_library_internal(
|
|
revngClift
|
|
SHARED
|
|
Clift.cpp
|
|
CliftAttributes.cpp
|
|
CliftDialect.cpp
|
|
CliftEnums.cpp
|
|
CliftInterfaces.cpp
|
|
CliftOpHelpers.cpp
|
|
CliftOpInterfaces.cpp
|
|
CliftOpTraits.cpp
|
|
CliftTypes.cpp)
|
|
|
|
target_link_libraries(
|
|
revngClift
|
|
MLIRBytecodeReader
|
|
MLIRBytecodeWriter
|
|
MLIRDialect
|
|
MLIRInferTypeOpInterface
|
|
MLIRIR
|
|
MLIRParser
|
|
revngSupport)
|
|
|
|
add_dependencies(revngClift MLIRCliftIncGen)
|