mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
7f65b1117a
This pipe is executed during the Lift step and populates the model with all the required primitive types.
17 lines
383 B
CMake
17 lines
383 B
CMake
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
revng_add_library_internal(
|
|
revngModelPasses
|
|
SHARED
|
|
AddPrimitiveTypes.cpp
|
|
ConvertFunctionTypes.cpp
|
|
DeduplicateEquivalentTypes.cpp
|
|
OptionCategory.cpp
|
|
PromoteOriginalName.cpp
|
|
PurgeUnnamedAndUnreachableTypes.cpp
|
|
Verify.cpp)
|
|
|
|
target_link_libraries(revngModelPasses revngABI revngModel)
|