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