mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
f649e26655
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...
21 lines
558 B
CMake
21 lines
558 B
CMake
set(SRCS Disassembler.cpp
|
|
UICommon.cpp
|
|
USBUtils.cpp)
|
|
|
|
set(LIBS common)
|
|
if(LIBUSB_FOUND)
|
|
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
|
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()
|