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