dolphin/Source/Core/UICommon/CMakeLists.txt

21 lines
557 B
CMake
Raw Normal View History

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)
2017-02-10 04:49:05 +00:00
if(LLVM_FOUND AND TARGET LLVM)
message(STATUS "LLVM found, enabling LLVM support in disassembler")
2017-02-08 02:04:30 +00:00
target_compile_definitions(uicommon PRIVATE HAVE_LLVM)
2017-02-10 04:49:05 +00:00
target_link_libraries(uicommon PRIVATE LLVM)
target_include_directories(uicommon PRIVATE ${LLVM_INCLUDE_DIRS})
endif()
endif()