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
|
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
|
2023-04-15 23:57:34 -06:00
|
|
|
minizip::minizip
|
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
|
2022-08-07 18:18:36 -06:00
|
|
|
(NOT DEFINED CMAKE_ANDROID_ARCH_ABI AND _M_X86_64))
|
2018-06-22 16:52:34 -06:00
|
|
|
target_link_libraries(uicommon PRIVATE bdisasm)
|
|
|
|
endif()
|
|
|
|
|
2024-04-18 04:58:08 -06:00
|
|
|
if(X11_FOUND)
|
2018-03-27 20:57:56 -06:00
|
|
|
target_sources(uicommon PRIVATE X11Utils.cpp)
|
2024-04-18 04:58:08 -06:00
|
|
|
target_link_libraries(uicommon PUBLIC PkgConfig::XRANDR PkgConfig::X11)
|
2016-05-05 17:43:38 -06:00
|
|
|
endif()
|
|
|
|
|
2023-04-15 23:57:34 -06:00
|
|
|
if(TARGET LibUSB::LibUSB)
|
|
|
|
target_link_libraries(uicommon PRIVATE LibUSB::LibUSB)
|
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)
|
2024-05-03 05:56:15 -06:00
|
|
|
find_package(LLVM CONFIG)
|
|
|
|
if(LLVM_FOUND)
|
2017-02-07 18:59:41 -07:00
|
|
|
message(STATUS "LLVM found, enabling LLVM support in disassembler")
|
2024-04-18 04:58:08 -06: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 05:56:15 -06:00
|
|
|
# https://groups.google.com/g/llvm-dev/c/YeEVe7HTasQ?pli=1
|
2024-04-18 04:58:08 -06: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 05:56:15 -06:00
|
|
|
llvm_config(uicommon USE_SHARED
|
2024-04-18 04:58:08 -06:00
|
|
|
mcdisassembler target ${LLVM_EXPAND_COMPONENTS}
|
|
|
|
)
|
2017-02-07 18:59:41 -07:00
|
|
|
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()
|