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:
Florent Castelli
2017-02-08 02:59:41 +01:00
parent 8c82607c95
commit f649e26655
3 changed files with 10 additions and 57 deletions

View File

@ -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()