Siva Chandra Reddy 59f17a7d4f [libc][NFC] Move tablegen indexer class into a util library of its own.
This class is currently used by two tools: HdrGen and PrototypeTestGen.
We will be adding more tools based on this class so it is convenient to
keep it in a util library of its own.
2020-07-28 16:35:19 -07:00

8 lines
168 B
CMake

add_llvm_library(
LibcTableGenUtil
APIIndexer.cpp
APIIndexer.h
LINK_COMPONENTS Support
)
target_include_directories(LibcTableGenUtil PUBLIC ${LIBC_SOURCE_DIR})