diff options
Diffstat (limited to 'llvm/lib/LineEditor/CMakeLists.txt')
-rw-r--r-- | llvm/lib/LineEditor/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/LineEditor/CMakeLists.txt b/llvm/lib/LineEditor/CMakeLists.txt new file mode 100644 index 00000000000..cef36a40b47 --- /dev/null +++ b/llvm/lib/LineEditor/CMakeLists.txt @@ -0,0 +1,7 @@ +add_llvm_library(LLVMLineEditor + LineEditor.cpp + ) + +if(HAVE_LIBEDIT) + target_link_libraries(LLVMLineEditor edit) +endif() |