aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LineEditor/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'lib/LineEditor/CMakeLists.txt')
-rw-r--r--lib/LineEditor/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/LineEditor/CMakeLists.txt b/lib/LineEditor/CMakeLists.txt
new file mode 100644
index 0000000..0dec256
--- /dev/null
+++ b/lib/LineEditor/CMakeLists.txt
@@ -0,0 +1,11 @@
+if(HAVE_LIBEDIT)
+ set(link_libs edit)
+endif()
+
+add_llvm_library(LLVMLineEditor
+ LineEditor.cpp
+
+ LINK_LIBS
+ LLVMSupport
+ ${link_libs}
+)