aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/LineEditor/CMakeLists.txt
blob: c4cd91cbb0cd9e9ecb5597319aa3951846b3a969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if(HAVE_LIBEDIT)
  set(link_libs LibEdit::LibEdit)
endif()

add_llvm_component_library(LLVMLineEditor
  LineEditor.cpp

  ADDITIONAL_HEADER_DIRS
  ${LLVM_MAIN_INCLUDE_DIR}/llvm/LineEditor

  LINK_LIBS
  ${link_libs}

  LINK_COMPONENTS
  Support
  )