1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Add three missing CMake variables that need to make it to the

LLVMConfig.cmake file that is (I think) used in the stand-alone Clang
build, and causing link errors there w.r.t. curses.

llvm-svn: 187950
This commit is contained in:
Chandler Carruth 2013-08-08 01:15:37 +00:00
parent 8030dee9b6
commit f3c4efa5aa

View File

@ -30,6 +30,9 @@ set(LLVM_NATIVE_ARCH @LLVM_NATIVE_ARCH@)
set(LLVM_ENABLE_PIC @LLVM_ENABLE_PIC@)
set(HAVE_CURSES @HAVE_CURSES@)
set(HAVE_NCURSES @HAVE_NCURSES@)
set(HAVE_NCURSESW @HAVE_NCURSESW@)
set(HAVE_LIBDL @HAVE_LIBDL@)
set(HAVE_LIBPTHREAD @HAVE_LIBPTHREAD@)
set(HAVE_LIBZ @HAVE_LIBZ@)