Files
clang-p2996/llvm/lib/TableGen/CMakeLists.txt
Rahul Joshi d883ef1076 [TableGen] Factor out timer code into a new TGTimer class (#111054)
Factor out the timer related functionality from `RecordKeeper` to a new
`TGTimer` class in a new file.
2024-10-04 09:23:55 -07:00

22 lines
367 B
CMake

add_llvm_component_library(LLVMTableGen
DetailedRecordsBackend.cpp
Error.cpp
JSONBackend.cpp
Main.cpp
Parser.cpp
Record.cpp
SetTheory.cpp
StringMatcher.cpp
TableGenBackend.cpp
TableGenBackendSkeleton.cpp
TGLexer.cpp
TGParser.cpp
TGTimer.cpp
ADDITIONAL_HEADER_DIRS
${LLVM_MAIN_INCLUDE_DIR}/llvm/TableGen
LINK_COMPONENTS
Support
)