2017-03-01 12:43:43 +00:00
|
|
|
set(SRCS
|
|
|
|
CommandLineParse.cpp
|
|
|
|
Disassembler.cpp
|
|
|
|
UICommon.cpp
|
|
|
|
USBUtils.cpp
|
2017-06-15 23:37:39 +00:00
|
|
|
VideoUtils.cpp
|
2017-03-01 12:43:43 +00:00
|
|
|
)
|
2014-10-04 19:12:15 +00:00
|
|
|
|
2016-05-05 23:43:38 +00:00
|
|
|
if(USE_X11)
|
|
|
|
set(SRCS ${SRCS} X11Utils.cpp)
|
|
|
|
endif()
|
|
|
|
|
2016-01-17 11:11:43 +00:00
|
|
|
set(LIBS common cpp-optparse)
|
2016-11-11 00:33:52 +00:00
|
|
|
if(LIBUSB_FOUND)
|
|
|
|
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
|
|
|
endif()
|
2014-10-04 19:12:15 +00:00
|
|
|
|
|
|
|
add_dolphin_library(uicommon "${SRCS}" "${LIBS}")
|
2017-02-08 01:59:41 +00:00
|
|
|
|
|
|
|
if(ENABLE_LLVM)
|
|
|
|
find_package(LLVM CONFIG QUIET)
|
2017-02-10 04:49:05 +00:00
|
|
|
if(LLVM_FOUND AND TARGET LLVM)
|
2017-02-08 01:59:41 +00:00
|
|
|
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)
|
2017-02-08 01:59:41 +00:00
|
|
|
target_include_directories(uicommon PRIVATE ${LLVM_INCLUDE_DIRS})
|
|
|
|
endif()
|
|
|
|
endif()
|