forked from OSchip/llvm-project
8 lines
124 B
CMake
8 lines
124 B
CMake
|
add_llvm_library(LLVMLineEditor
|
||
|
LineEditor.cpp
|
||
|
)
|
||
|
|
||
|
if(HAVE_LIBEDIT)
|
||
|
target_link_libraries(LLVMLineEditor edit)
|
||
|
endif()
|