Fix LLVM error
This commit is contained in:
parent
3cbbd48da9
commit
6913e8c3ac
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue