2018-03-27 20:57:56 -06:00
|
|
|
add_library(uicommon
|
2018-03-17 18:22:05 -06:00
|
|
|
AutoUpdate.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
AutoUpdate.h
|
2016-01-17 04:11:43 -07:00
|
|
|
CommandLineParse.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
CommandLineParse.h
|
2016-01-17 04:11:43 -07:00
|
|
|
Disassembler.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
Disassembler.h
|
2018-05-28 15:39:58 -06:00
|
|
|
DiscordPresence.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
DiscordPresence.h
|
2017-12-31 12:33:36 -07:00
|
|
|
GameFile.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
GameFile.h
|
2017-12-31 12:33:36 -07:00
|
|
|
GameFileCache.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
GameFileCache.h
|
2019-03-30 07:48:46 -06:00
|
|
|
NetPlayIndex.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
NetPlayIndex.h
|
2018-11-17 08:36:28 -07:00
|
|
|
ResourcePack/Manager.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
ResourcePack/Manager.h
|
2018-11-17 08:36:28 -07:00
|
|
|
ResourcePack/Manifest.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
ResourcePack/Manifest.h
|
2018-11-17 08:36:28 -07:00
|
|
|
ResourcePack/ResourcePack.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
ResourcePack/ResourcePack.h
|
2016-11-10 17:33:52 -07:00
|
|
|
UICommon.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
UICommon.h
|
2016-11-10 17:33:52 -07:00
|
|
|
USBUtils.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
USBUtils.h
|
2017-06-15 17:37:39 -06:00
|
|
|
VideoUtils.cpp
|
2019-05-29 03:21:12 -06:00
|
|
|
VideoUtils.h
|
2016-11-10 17:33:52 -07:00
|
|
|
)
|
2014-10-04 13:12:15 -06:00
|
|
|
|
2018-03-30 13:43:49 -06:00
|
|
|
target_link_libraries(uicommon
|
|
|
|
PUBLIC
|
2018-03-27 20:57:56 -06:00
|
|
|
common
|
|
|
|
cpp-optparse
|
2022-05-28 16:19:55 -06:00
|
|
|
minizip-ng
|
2019-08-13 10:01:27 -06:00
|
|
|
pugixml
|
2018-03-30 13:43:49 -06:00
|
|
|
|
|
|
|
PRIVATE
|
2019-11-23 17:15:52 -07:00
|
|
|
fmt::fmt
|
2018-03-30 13:43:49 -06:00
|
|
|
$<$<BOOL:APPLE>:${IOK_LIBRARY}>
|
2018-03-27 20:57:56 -06:00
|
|
|
)
|
|
|
|
|
2018-06-22 16:52:34 -06:00
|
|
|
if ((DEFINED CMAKE_ANDROID_ARCH_ABI AND CMAKE_ANDROID_ARCH_ABI MATCHES "x86|x86_64") OR
|
|
|
|
(NOT DEFINED CMAKE_ANDROID_ARCH_ABI AND _M_X86))
|
|
|
|
target_link_libraries(uicommon PRIVATE bdisasm)
|
|
|
|
endif()
|
|
|
|
|
2018-10-14 07:17:31 -06:00
|
|
|
if(ENABLE_X11 AND X11_FOUND)
|
2018-10-03 07:03:36 -06:00
|
|
|
target_include_directories(uicommon PRIVATE ${X11_INCLUDE_DIR})
|
2018-03-27 20:57:56 -06:00
|
|
|
target_sources(uicommon PRIVATE X11Utils.cpp)
|
2018-10-03 07:03:36 -06:00
|
|
|
target_link_libraries(uicommon PUBLIC ${XRANDR_LIBRARIES})
|
2016-05-05 17:43:38 -06:00
|
|
|
endif()
|
|
|
|
|
2016-11-10 17:33:52 -07:00
|
|
|
if(LIBUSB_FOUND)
|
2018-03-27 20:57:56 -06:00
|
|
|
target_link_libraries(uicommon PRIVATE ${LIBUSB_LIBRARIES})
|
2016-11-10 17:33:52 -07:00
|
|
|
endif()
|
2014-10-04 13:12:15 -06:00
|
|
|
|
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()
|
2018-06-08 14:56:11 -06:00
|
|
|
|
|
|
|
if(USE_DISCORD_PRESENCE)
|
|
|
|
target_compile_definitions(uicommon PRIVATE -DUSE_DISCORD_PRESENCE)
|
|
|
|
target_link_libraries(uicommon PRIVATE discord-rpc)
|
|
|
|
endif()
|
2022-05-21 17:19:44 -06:00
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
# Add precompiled header
|
|
|
|
target_link_libraries(uicommon PRIVATE use_pch)
|
|
|
|
endif()
|