8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
15 lines
212 B
CMake
15 lines
212 B
CMake
if(HAVE_LIBEDIT)
|
|
set(link_libs edit)
|
|
endif()
|
|
|
|
add_llvm_library(LLVMLineEditor
|
|
LineEditor.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/LineEditor
|
|
|
|
LINK_LIBS
|
|
LLVMSupport
|
|
${link_libs}
|
|
)
|