mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
866eeb52d1
The link dependencies are already specified in LLVMBuild.txt llvm-svn: 364125
14 lines
198 B
CMake
14 lines
198 B
CMake
if(HAVE_LIBEDIT)
|
|
set(link_libs edit)
|
|
endif()
|
|
|
|
add_llvm_library(LLVMLineEditor
|
|
LineEditor.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/LineEditor
|
|
|
|
LINK_LIBS
|
|
${link_libs}
|
|
)
|