mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
cmake: Move LLVM import to UICommon
To use it, with a modern LLVM (3.9+), set your CMAKE_PREFIX_PATH to point to the LLVM install folder or to a LLVM build folder. We're linking ALL of LLVM libs since I don't really know which ones we need. LTO will take care of sliming the binary size...
This commit is contained in:
@ -8,3 +8,13 @@ if(LIBUSB_FOUND)
|
||||
endif()
|
||||
|
||||
add_dolphin_library(uicommon "${SRCS}" "${LIBS}")
|
||||
|
||||
if(ENABLE_LLVM)
|
||||
find_package(LLVM CONFIG QUIET)
|
||||
if(LLVM_FOUND)
|
||||
message(STATUS "LLVM found, enabling LLVM support in disassembler")
|
||||
target_compile_definitions(uicommon PRIVATE HAS_LLVM)
|
||||
target_link_libraries(uicommon PRIVATE ${LLVM_AVAILABLE_LIBS})
|
||||
target_include_directories(uicommon PRIVATE ${LLVM_INCLUDE_DIRS})
|
||||
endif()
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user