mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-14 21:42:06 +00: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:
parent
8c82607c95
commit
f649e26655
3 changed files with 10 additions and 57 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue