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
|
2024-06-15 20:56:12 +00:00
|
|
|
core
|
2018-03-28 02:57:56 +00:00
|
|
|
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
|
2022-08-08 00:18:36 +00:00
|
|
|
(NOT DEFINED CMAKE_ANDROID_ARCH_ABI AND _M_X86_64))
|
2018-06-22 22:52:34 +00:00
|
|
|
target_link_libraries(uicommon PRIVATE bdisasm)
|
|
|
|
endif()
|
|
|
|
|
2024-04-18 10:58:08 +00:00
|
|
|
if(X11_FOUND)
|
2018-03-28 02:57:56 +00:00
|
|
|
target_sources(uicommon PRIVATE X11Utils.cpp)
|
2024-04-18 10:58:08 +00:00
|
|
|
target_link_libraries(uicommon PUBLIC PkgConfig::XRANDR PkgConfig::X11)
|
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)
|
2024-05-03 11:56:15 +00:00
|
|
|
find_package(LLVM CONFIG)
|
|
|
|
if(LLVM_FOUND)
|
2017-02-08 01:59:41 +00:00
|
|
|
message(STATUS "LLVM found, enabling LLVM support in disassembler")
|
2024-08-08 16:42:14 +00:00
|
|
|
target_compile_definitions(uicommon PRIVATE HAVE_LLVM)
|
2024-04-18 10:58:08 +00:00
|
|
|
# Minimal documentation about LLVM's CMake functions is available here:
|
|
|
|
# https://releases.llvm.org/16.0.0/docs/CMake.html#embedding-llvm-in-your-project
|
2024-05-03 11:56:15 +00:00
|
|
|
# https://groups.google.com/g/llvm-dev/c/YeEVe7HTasQ?pli=1
|
2024-04-18 10:58:08 +00:00
|
|
|
#
|
|
|
|
# However, you have to read the source code in any case.
|
|
|
|
# Look for LLVM-Config.cmake in your (Unix) system:
|
|
|
|
# $ find /usr -name LLVM-Config\\.cmake 2>/dev/null
|
|
|
|
llvm_expand_pseudo_components(LLVM_EXPAND_COMPONENTS
|
|
|
|
AllTargetsInfos AllTargetsDisassemblers AllTargetsCodeGens
|
|
|
|
)
|
2024-05-03 11:56:15 +00:00
|
|
|
llvm_config(uicommon USE_SHARED
|
2024-04-18 10:58:08 +00:00
|
|
|
mcdisassembler target ${LLVM_EXPAND_COMPONENTS}
|
|
|
|
)
|
2024-08-08 16:42:14 +00:00
|
|
|
target_include_directories(uicommon PRIVATE ${LLVM_INCLUDE_DIRS})
|
2017-02-08 01:59:41 +00:00
|
|
|
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()
|