mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
f05c08547d
By using this class we can create ptml::Tags without XML tags. It is useful in the revng-c part when we want to generate Plain C. All PTML Tags, from now on, should be created via this class only. In addition, port `Yield` library to be using this.
10 lines
294 B
CMake
10 lines
294 B
CMake
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
revng_add_library_internal(revngPTML SHARED IndentedOstream.cpp Tag.cpp)
|
|
|
|
llvm_map_components_to_libnames(LLVM_LIBRARIES Support Core)
|
|
|
|
target_link_libraries(revngPTML revngSupport revngModel ${LLVM_LIBRARIES})
|