Fix broken build
[oota-llvm.git] / lib / LineEditor / CMakeLists.txt
1 if(HAVE_LIBEDIT)
2   set(link_libs edit)
3 endif()
4
5 add_llvm_library(LLVMLineEditor
6   LineEditor.cpp
7
8   LINK_LIBS
9   LLVMSupport
10   ${link_libs}
11 )