Home | History | Annotate | Download | only in LineEditor
      1 if(HAVE_LIBEDIT)
      2   set(link_libs edit)
      3 endif()
      4 
      5 add_llvm_library(LLVMLineEditor
      6   LineEditor.cpp
      7 
      8   ADDITIONAL_HEADER_DIRS
      9   ${LLVM_MAIN_INCLUDE_DIR}/llvm/LineEditor
     10 
     11   LINK_LIBS
     12   LLVMSupport
     13   ${link_libs}
     14   )
     15