From 6913e8c3ac9a58e7a690a1772d65132c5b88eab0 Mon Sep 17 00:00:00 2001 From: orbea Date: Thu, 9 Feb 2017 20:49:05 -0800 Subject: [PATCH] Fix LLVM error --- Source/Core/UICommon/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/UICommon/CMakeLists.txt b/Source/Core/UICommon/CMakeLists.txt index b76e79a66f..1487b74baa 100644 --- a/Source/Core/UICommon/CMakeLists.txt +++ b/Source/Core/UICommon/CMakeLists.txt @@ -11,10 +11,10 @@ add_dolphin_library(uicommon "${SRCS}" "${LIBS}") if(ENABLE_LLVM) find_package(LLVM CONFIG QUIET) - if(LLVM_FOUND) + if(LLVM_FOUND AND TARGET LLVM) message(STATUS "LLVM found, enabling LLVM support in disassembler") target_compile_definitions(uicommon PRIVATE HAVE_LLVM) - target_link_libraries(uicommon PRIVATE ${LLVM_AVAILABLE_LIBS}) + target_link_libraries(uicommon PRIVATE LLVM) target_include_directories(uicommon PRIVATE ${LLVM_INCLUDE_DIRS}) endif() endif()