2017-03-01 05:43:43 -07:00
|
|
|
set(SRCS
|
|
|
|
CommandLineParse.cpp
|
|
|
|
Disassembler.cpp
|
|
|
|
UICommon.cpp
|
|
|
|
USBUtils.cpp
|
2017-06-15 17:37:39 -06:00
|
|
|
VideoUtils.cpp
|
2017-03-01 05:43:43 -07:00
|
|
|
)
|
2014-10-04 13:12:15 -06:00
|
|
|
|
2016-05-05 17:43:38 -06:00
|
|
|
if(USE_X11)
|
|
|
|
set(SRCS ${SRCS} X11Utils.cpp)
|
|
|
|
endif()
|
|
|
|
|
2016-01-17 04:11:43 -07:00
|
|
|
set(LIBS common cpp-optparse)
|
2016-11-10 17:33:52 -07:00
|
|
|
if(LIBUSB_FOUND)
|
|
|
|
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
|
|
|
endif()
|
2014-10-04 13:12:15 -06:00
|
|
|
|
|
|
|
add_dolphin_library(uicommon "${SRCS}" "${LIBS}")
|
2017-02-07 18:59:41 -07:00
|
|
|
|
|
|
|
if(ENABLE_LLVM)
|
|
|
|
find_package(LLVM CONFIG QUIET)
|
2017-02-09 21:49:05 -07:00
|
|
|
if(LLVM_FOUND AND TARGET LLVM)
|
2017-02-07 18:59:41 -07:00
|
|
|
message(STATUS "LLVM found, enabling LLVM support in disassembler")
|
2017-02-07 19:04:30 -07:00
|
|
|
target_compile_definitions(uicommon PRIVATE HAVE_LLVM)
|
2017-02-09 21:49:05 -07:00
|
|
|
target_link_libraries(uicommon PRIVATE LLVM)
|
2017-02-07 18:59:41 -07:00
|
|
|
target_include_directories(uicommon PRIVATE ${LLVM_INCLUDE_DIRS})
|
|
|
|
endif()
|
|
|
|
endif()
|