2023-06-19 02:38:40 +03:00
|
|
|
cmake_minimum_required(VERSION 3.13..3.21)
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-01 22:38:46 +03:00
|
|
|
option(APPVEYOR_BUILD "Build on appveyor" OFF)
|
2020-01-24 19:35:49 +03:00
|
|
|
option(CI_BUILD "Set when building in CI. Enables -Werror where possible" OFF)
|
2018-05-04 18:11:03 +03:00
|
|
|
option(ASAN "Compile with address sanitizers" OFF)
|
2019-12-15 01:48:02 +03:00
|
|
|
option(QML_DEBUGGING "Enable qml debugging" OFF)
|
2021-12-23 00:34:07 +03:00
|
|
|
if(UNIX AND NOT APPLE)
|
2023-09-24 05:29:50 +03:00
|
|
|
option(MAN "Build man page" ON)
|
2021-12-23 00:34:07 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
option(MAN "Build man page" OFF)
|
2021-12-23 00:34:07 +03:00
|
|
|
endif()
|
2022-02-10 01:46:49 +03:00
|
|
|
option(FLATPAK "Set this only if Nheko is built as a flatpak" OFF)
|
2022-06-17 04:27:29 +03:00
|
|
|
option(JSON_ImplicitConversions "Disable implicit conversions in nlohmann/json" ON)
|
2017-05-02 04:22:33 +03:00
|
|
|
|
2020-01-24 19:35:49 +03:00
|
|
|
set(
|
2023-09-24 05:29:50 +03:00
|
|
|
CMAKE_TOOLCHAIN_FILE "${CMAKE_CURRENT_LIST_DIR}/toolchain.cmake"
|
|
|
|
CACHE
|
|
|
|
FILEPATH "Default toolchain"
|
|
|
|
)
|
2022-09-21 03:58:35 +03:00
|
|
|
set(CMAKE_CXX_STANDARD 20 CACHE STRING "C++ standard")
|
2020-05-25 12:12:01 +03:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON CACHE BOOL "Require C++ standard to be supported")
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON CACHE BOOL "compile as PIC by default")
|
2023-03-10 03:28:19 +03:00
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "macos deployment target")
|
2020-01-24 19:35:49 +03:00
|
|
|
|
|
|
|
option(HUNTER_ENABLED "Enable Hunter package manager" OFF)
|
|
|
|
include("cmake/HunterGate.cmake")
|
|
|
|
HunterGate(
|
2024-05-10 22:22:58 +03:00
|
|
|
URL "https://github.com/cpp-pm/hunter/archive/v0.25.5.tar.gz"
|
|
|
|
SHA1 "a20151e4c0740ee7d0f9994476856d813cdead29"
|
2022-11-20 05:51:44 +03:00
|
|
|
LOCAL
|
2022-08-10 01:20:44 +03:00
|
|
|
)
|
2020-01-24 19:35:49 +03:00
|
|
|
|
2021-11-18 04:56:32 +03:00
|
|
|
macro(hunter_add_package_safe)
|
2023-09-24 05:29:50 +03:00
|
|
|
set(pkg_temp_backup_libdir "$ENV{PKG_CONFIG_LIBDIR}")
|
|
|
|
set(pkg_temp_backup_path "$ENV{PKG_CONFIG_PATH}")
|
|
|
|
hunter_add_package(${ARGV})
|
|
|
|
if("${pkg_temp_backup_path}" STREQUAL "")
|
|
|
|
unset(ENV{PKG_CONFIG_PATH})
|
|
|
|
else()
|
|
|
|
set(ENV{PKG_CONFIG_PATH} "${pkg_temp_backup_path}")
|
|
|
|
endif()
|
|
|
|
if("${pkg_temp_backup_libdir}" STREQUAL "")
|
|
|
|
unset(ENV{PKG_CONFIG_LIBDIR})
|
|
|
|
else()
|
|
|
|
set(ENV{PKG_CONFIG_LIBDIR} "${pkg_temp_backup_libdir}")
|
|
|
|
endif()
|
|
|
|
message("pkg_conf_path: '$ENV{PKG_CONFIG_PATH}', pkg_conf_libdir: '$ENV{PKG_CONFIG_LIBDIR}'")
|
2021-11-18 04:56:32 +03:00
|
|
|
endmacro()
|
|
|
|
|
2023-11-20 23:23:38 +03:00
|
|
|
project(nheko LANGUAGES CXX C)
|
|
|
|
|
2021-06-30 03:43:36 +03:00
|
|
|
option(USE_BUNDLED_SPDLOG "Use the bundled version of spdlog." ${HUNTER_ENABLED})
|
2024-08-05 20:30:46 +03:00
|
|
|
option(USE_BUNDLED_FMT "Use the bundled version of {fmt}." ${HUNTER_ENABLED})
|
2020-01-24 19:35:49 +03:00
|
|
|
option(USE_BUNDLED_OLM "Use the bundled version of libolm." ${HUNTER_ENABLED})
|
2021-06-30 03:43:36 +03:00
|
|
|
option(USE_BUNDLED_GTEST "Use the bundled version of Google Test." ${HUNTER_ENABLED})
|
|
|
|
option(USE_BUNDLED_CMARK "Use the bundled version of cmark." ${HUNTER_ENABLED})
|
|
|
|
option(USE_BUNDLED_JSON "Use the bundled version of nlohmann json." ${HUNTER_ENABLED})
|
|
|
|
option(USE_BUNDLED_OPENSSL "Use the bundled version of OpenSSL." OFF)
|
2020-01-24 19:35:49 +03:00
|
|
|
option(USE_BUNDLED_MTXCLIENT "Use the bundled version of the Matrix Client library." ${HUNTER_ENABLED})
|
2021-06-30 03:43:36 +03:00
|
|
|
option(USE_BUNDLED_LMDB "Use the bundled version of lmdb." ${HUNTER_ENABLED})
|
|
|
|
option(USE_BUNDLED_LMDBXX "Use the bundled version of lmdb++." ${HUNTER_ENABLED})
|
2023-06-01 23:09:54 +03:00
|
|
|
option(USE_BUNDLED_QTKEYCHAIN "Use the bundled version of Qt6Keychain." ${HUNTER_ENABLED})
|
2021-06-30 03:43:36 +03:00
|
|
|
option(USE_BUNDLED_COEURL "Use a bundled version of the Curl wrapper"
|
2023-09-24 05:29:50 +03:00
|
|
|
${HUNTER_ENABLED})
|
2022-09-13 23:12:33 +03:00
|
|
|
option(USE_BUNDLED_LIBEVENT "Use the bundled version of libevent." ${HUNTER_ENABLED})
|
|
|
|
option(USE_BUNDLED_LIBCURL "Use the bundled version of libcurl." ${HUNTER_ENABLED})
|
2022-10-12 22:20:17 +03:00
|
|
|
option(USE_BUNDLED_RE2 "Use the bundled version of re2." ${HUNTER_ENABLED})
|
2023-11-20 04:38:58 +03:00
|
|
|
option(USE_BUNDLED_KDSINGLEAPPLICATION "Use the bundled version of KDSingleApplication." ${HUNTER_ENABLED})
|
2023-02-15 12:36:56 +03:00
|
|
|
option(USE_BUNDLED_CPPHTTPLIB "Use the bundled version of cpp-httplib." ON)
|
2023-02-16 17:26:02 +03:00
|
|
|
option(USE_BUNDLED_BLURHASH "Use the bundled version of blurhash." ON)
|
2020-01-24 19:35:49 +03:00
|
|
|
|
2021-11-19 01:05:28 +03:00
|
|
|
include(CMakeDependentOption)
|
|
|
|
set(VOIP_DEFAULT ON)
|
2023-11-19 21:44:09 +03:00
|
|
|
if(APPLE OR WIN32 OR HAIKU)
|
2023-09-24 05:29:50 +03:00
|
|
|
set(VOIP_DEFAULT OFF)
|
2021-11-19 01:05:28 +03:00
|
|
|
endif()
|
|
|
|
option(VOIP "Whether to enable voip support. Disable this, if you don't have gstreamer." ${VOIP_DEFAULT})
|
2023-06-03 03:45:38 +03:00
|
|
|
set(X11_DEFAULT)
|
2023-09-24 05:29:50 +03:00
|
|
|
if(WIN32 OR APPLE OR HAIKU)
|
|
|
|
set(X11_DEFAULT OFF)
|
2023-06-03 03:45:38 +03:00
|
|
|
endif()
|
|
|
|
option(X11 "Whether to enable X11 specific features (screenshare, window roles)." ${X11_DEFAULT})
|
2023-03-11 16:36:51 +03:00
|
|
|
cmake_dependent_option(SCREENSHARE_XDP "Whether to enable screenshare support using xdg-desktop-portal." ON "VOIP" OFF)
|
2021-11-19 01:05:28 +03:00
|
|
|
|
2020-01-24 19:35:49 +03:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
|
2017-11-06 18:17:21 +03:00
|
|
|
|
2020-01-26 20:53:24 +03:00
|
|
|
if(${CMAKE_VERSION} VERSION_LESS "3.14.0")
|
2023-09-24 05:29:50 +03:00
|
|
|
message("Adding FetchContent_MakeAvailable")
|
|
|
|
# from cmakes sources
|
|
|
|
macro(FetchContent_MakeAvailable)
|
|
|
|
foreach(contentName IN ITEMS ${ARGV})
|
|
|
|
string(TOLOWER ${contentName} contentNameLower)
|
|
|
|
FetchContent_GetProperties(${contentName})
|
|
|
|
if(NOT ${contentNameLower}_POPULATED)
|
|
|
|
FetchContent_Populate(${contentName})
|
|
|
|
|
|
|
|
# Only try to call add_subdirectory() if the populated content
|
|
|
|
# can be treated that way. Protecting the call with the check
|
|
|
|
# allows this function to be used for projects that just want
|
|
|
|
# to ensure the content exists, such as to provide content at
|
|
|
|
# a known location.
|
|
|
|
if(EXISTS ${${contentNameLower}_SOURCE_DIR}/CMakeLists.txt)
|
|
|
|
add_subdirectory(${${contentNameLower}_SOURCE_DIR}
|
|
|
|
${${contentNameLower}_BINARY_DIR})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endmacro()
|
2020-01-26 20:53:24 +03:00
|
|
|
endif()
|
|
|
|
|
2021-01-24 03:05:12 +03:00
|
|
|
# Include Qt basic functions
|
|
|
|
include(QtCommon)
|
|
|
|
|
2018-01-09 21:34:01 +03:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
2018-03-22 17:20:22 +03:00
|
|
|
set(CPACK_PACKAGE_VERSION_MAJOR "0")
|
2024-06-11 23:24:35 +03:00
|
|
|
set(CPACK_PACKAGE_VERSION_MINOR "12")
|
|
|
|
set(CPACK_PACKAGE_VERSION_PATCH "0")
|
2018-03-22 20:13:38 +03:00
|
|
|
set(PROJECT_VERSION_MAJOR ${CPACK_PACKAGE_VERSION_MAJOR})
|
|
|
|
set(PROJECT_VERSION_MINOR ${CPACK_PACKAGE_VERSION_MINOR})
|
|
|
|
set(PROJECT_VERSION_PATCH ${CPACK_PACKAGE_VERSION_PATCH})
|
2017-11-06 18:17:21 +03:00
|
|
|
|
2018-03-22 20:13:38 +03:00
|
|
|
# Set PROJECT_VERSION_PATCH & PROJECT_VERSION_TWEAK to 0 if not present
|
|
|
|
# Needed by add_project_meta.
|
2017-11-06 18:17:21 +03:00
|
|
|
fix_project_version()
|
|
|
|
|
|
|
|
# Set additional project information
|
|
|
|
set(COMPANY "Nheko")
|
2024-06-11 23:24:35 +03:00
|
|
|
set(COPYRIGHT "Copyright (c) 2024 Nheko Contributors")
|
|
|
|
set(IDENTIFIER "im.nheko.Nheko")
|
2017-11-06 18:17:21 +03:00
|
|
|
|
|
|
|
add_project_meta(META_FILES_TO_INCLUDE)
|
|
|
|
|
2018-06-04 16:07:47 +03:00
|
|
|
if(NOT MSVC AND NOT APPLE)
|
2023-09-24 05:29:50 +03:00
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
|
|
find_package(Threads REQUIRED)
|
2018-06-04 16:07:47 +03:00
|
|
|
endif()
|
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(BUILD_DOCS)
|
|
|
|
find_package(Doxygen)
|
2020-01-25 02:58:22 +03:00
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(DOXYGEN_FOUND)
|
|
|
|
set(DOXYGEN_IN ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Doxyfile.in)
|
|
|
|
set(DOXYGEN_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
|
2020-01-25 02:58:22 +03:00
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
configure_file(${DOXYGEN_IN} ${DOXYGEN_OUT})
|
2020-01-25 02:58:22 +03:00
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
add_custom_target(docs ALL
|
|
|
|
COMMAND ${DOXYGEN_EXECUTABLE} ${DOXYGEN_OUT}
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
COMMENT "Generating API documentation with Doxygen"
|
|
|
|
VERBATIM )
|
|
|
|
else(DOXYGEN_FOUND)
|
|
|
|
message("Doxygen need to be installed to generate the doxygen documentation")
|
|
|
|
endif(DOXYGEN_FOUND)
|
2018-07-02 18:39:49 +03:00
|
|
|
endif()
|
|
|
|
|
2021-06-30 03:43:36 +03:00
|
|
|
#
|
|
|
|
## coeurl
|
|
|
|
#
|
|
|
|
## Need to repeat all libevent deps?!?
|
2023-09-24 05:29:50 +03:00
|
|
|
if(USE_BUNDLED_LIBEVENT)
|
|
|
|
hunter_add_package_safe(Libevent)
|
|
|
|
find_package(Libevent CONFIG REQUIRED)
|
2021-06-30 03:43:36 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(libevent_core REQUIRED IMPORTED_TARGET libevent_core)
|
|
|
|
if(WIN32)
|
|
|
|
pkg_check_modules(libevent_windows REQUIRED IMPORTED_TARGET libevent_windows)
|
|
|
|
else()
|
|
|
|
pkg_check_modules(libevent_pthreads REQUIRED IMPORTED_TARGET libevent_pthreads)
|
|
|
|
endif()
|
2021-06-30 03:43:36 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# curl
|
2023-09-24 05:29:50 +03:00
|
|
|
if(USE_BUNDLED_LIBCURL)
|
|
|
|
hunter_add_package_safe(CURL)
|
|
|
|
find_package(CURL CONFIG REQUIRED)
|
2021-06-30 03:43:36 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(libcurl REQUIRED IMPORTED_TARGET libcurl)
|
2021-06-30 03:43:36 +03:00
|
|
|
endif()
|
|
|
|
|
2024-08-05 20:30:46 +03:00
|
|
|
# fmt
|
|
|
|
if(USE_BUNDLED_FMT)
|
|
|
|
hunter_add_package_safe(fmt)
|
|
|
|
endif()
|
|
|
|
find_package(fmt 8.0.0 CONFIG REQUIRED)
|
|
|
|
|
2021-06-30 03:43:36 +03:00
|
|
|
# spdlog
|
|
|
|
if(USE_BUNDLED_SPDLOG)
|
2023-09-24 05:29:50 +03:00
|
|
|
hunter_add_package_safe(spdlog)
|
2021-06-30 03:43:36 +03:00
|
|
|
endif()
|
|
|
|
find_package(spdlog 1.0.0 CONFIG REQUIRED)
|
2018-07-02 18:39:49 +03:00
|
|
|
|
2022-06-09 03:41:25 +03:00
|
|
|
if(USE_BUNDLED_COEURL)
|
2023-09-24 05:29:50 +03:00
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
|
|
coeurl
|
|
|
|
GIT_REPOSITORY https://nheko.im/Nheko-Reborn/coeurl.git
|
|
|
|
GIT_TAG 831e2ee8e9cf08ea1ee9736cde8370f9d0312abc
|
|
|
|
)
|
|
|
|
FetchContent_MakeAvailable(coeurl)
|
|
|
|
set(COEURL_TARGET_NAME coeurl::coeurl)
|
2022-06-09 03:41:25 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(PkgConfig)
|
|
|
|
pkg_check_modules(coeurl IMPORTED_TARGET coeurl>=0.3.0)
|
|
|
|
if(TARGET PkgConfig::coeurl)
|
|
|
|
set(COEURL_TARGET_NAME PkgConfig::coeurl)
|
|
|
|
endif()
|
2022-06-17 20:49:18 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT TARGET PkgConfig::coeurl)
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(coeurl 0.2.1 CONFIG)
|
|
|
|
if(TARGET coeurl::coeurl)
|
|
|
|
set(COEURL_TARGET_NAME coeurl::coeurl)
|
|
|
|
endif()
|
2022-06-09 03:41:25 +03:00
|
|
|
endif()
|
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(NOT COEURL_TARGET_NAME)
|
|
|
|
message(ERROR "Couldn't find coeurl")
|
2022-06-09 03:41:25 +03:00
|
|
|
endif()
|
|
|
|
|
2022-10-12 22:20:17 +03:00
|
|
|
if(USE_BUNDLED_RE2)
|
2023-09-24 05:29:50 +03:00
|
|
|
hunter_add_package(re2)
|
|
|
|
find_package(re2 CONFIG REQUIRED)
|
2022-10-12 22:20:17 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(re2 REQUIRED IMPORTED_TARGET re2)
|
2022-10-12 22:20:17 +03:00
|
|
|
endif()
|
|
|
|
|
2017-07-29 11:49:00 +03:00
|
|
|
#
|
|
|
|
# LMDB
|
|
|
|
#
|
2020-01-24 19:35:49 +03:00
|
|
|
#include(LMDB)
|
|
|
|
if(USE_BUNDLED_LMDB)
|
2023-09-24 05:29:50 +03:00
|
|
|
hunter_add_package_safe(lmdb)
|
|
|
|
find_package(liblmdb CONFIG REQUIRED)
|
2021-03-03 06:26:55 +03:00
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
target_include_directories(liblmdb::lmdb INTERFACE
|
|
|
|
"${HUNTER_INSTALL_PREFIX}/include/lmdb")
|
2020-01-24 19:35:49 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(LMDB REQUIRED)
|
2020-01-24 19:35:49 +03:00
|
|
|
endif()
|
2017-07-29 11:49:00 +03:00
|
|
|
|
2017-07-09 12:49:17 +03:00
|
|
|
#
|
|
|
|
# Discover Qt dependencies.
|
|
|
|
#
|
2023-06-02 01:24:26 +03:00
|
|
|
find_package(Qt6 6.5 COMPONENTS Core Widgets Gui LinguistTools Svg Multimedia Qml QuickControls2 REQUIRED)
|
2023-06-01 23:09:54 +03:00
|
|
|
find_package(Qt6DBus)
|
2020-12-18 05:21:17 +03:00
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(USE_BUNDLED_QTKEYCHAIN)
|
|
|
|
include(FetchContent)
|
|
|
|
set(BUILD_WITH_QT6 ON)
|
|
|
|
FetchContent_Declare(
|
|
|
|
qt6keychain
|
|
|
|
GIT_REPOSITORY https://github.com/frankosterfeld/qtkeychain.git
|
|
|
|
GIT_TAG v0.14.0
|
|
|
|
)
|
|
|
|
set(BUILD_TEST_APPLICATION OFF CACHE INTERNAL "")
|
|
|
|
FetchContent_MakeAvailable(qt6keychain)
|
2020-12-18 05:21:17 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(Qt6Keychain REQUIRED)
|
2020-12-18 05:21:17 +03:00
|
|
|
endif()
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2023-11-20 04:38:58 +03:00
|
|
|
if(USE_BUNDLED_KDSINGLEAPPLICATION)
|
|
|
|
include(FetchContent)
|
|
|
|
set(KDSingleApplication_QT6 ON CACHE BOOL INTERNAL)
|
|
|
|
set(KDSingleApplication_EXAMPLES OFF CACHE BOOL INTERNAL)
|
|
|
|
FetchContent_Declare(
|
|
|
|
kdsingleapplication
|
|
|
|
GIT_REPOSITORY https://github.com/KDAB/KDSingleApplication.git
|
|
|
|
GIT_TAG v1.0.0
|
|
|
|
)
|
|
|
|
FetchContent_MakeAvailable(kdsingleapplication)
|
|
|
|
else()
|
|
|
|
find_package(KDSingleApplication-qt6 REQUIRED)
|
|
|
|
endif()
|
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(Qt6Widgets_FOUND)
|
|
|
|
if(Qt6Widgets_VERSION VERSION_LESS 6.5.0)
|
|
|
|
message(STATUS "Qt version ${Qt6Widgets_VERSION}")
|
|
|
|
message(WARNING "Minimum supported Qt6 version is 6.5!")
|
|
|
|
endif()
|
2023-06-01 23:09:54 +03:00
|
|
|
endif(Qt6Widgets_FOUND)
|
2017-05-30 14:35:01 +03:00
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
2018-06-04 16:07:47 +03:00
|
|
|
if(NOT MSVC)
|
2023-09-24 05:29:50 +03:00
|
|
|
set(
|
|
|
|
CMAKE_CXX_FLAGS
|
|
|
|
"${CMAKE_CXX_FLAGS} \
|
|
|
|
-Wall \
|
|
|
|
-Wextra \
|
|
|
|
-pedantic \
|
|
|
|
-fsized-deallocation \
|
|
|
|
-fdiagnostics-color=always \
|
|
|
|
-Wunreachable-code \
|
|
|
|
-Wno-attributes"
|
|
|
|
)
|
|
|
|
if(NOT CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
# -Wshadow is buggy and broken in GCC, so do not enable it.
|
|
|
|
# see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79328
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wshadow")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
set(
|
|
|
|
CMAKE_CXX_FLAGS
|
|
|
|
"${CMAKE_CXX_FLAGS} /bigobj"
|
|
|
|
)
|
2019-01-28 05:03:07 +03:00
|
|
|
endif()
|
|
|
|
|
2018-06-14 02:17:38 +03:00
|
|
|
if(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES))
|
2023-09-24 05:29:50 +03:00
|
|
|
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
|
|
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
|
|
|
FORCE)
|
|
|
|
message("Setting build type to '${CMAKE_BUILD_TYPE}'")
|
2018-06-14 02:17:38 +03:00
|
|
|
else(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES))
|
2023-09-24 05:29:50 +03:00
|
|
|
message("Build type set to '${CMAKE_BUILD_TYPE}'")
|
2018-06-14 02:17:38 +03:00
|
|
|
endif(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES))
|
2017-04-11 18:25:39 +03:00
|
|
|
|
2018-10-06 17:45:56 +03:00
|
|
|
set(SPDLOG_DEBUG_ON false)
|
|
|
|
|
|
|
|
# Windows doesn't handle CMAKE_BUILD_TYPE.
|
|
|
|
if(NOT WIN32)
|
2023-09-24 05:29:50 +03:00
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
|
set(SPDLOG_DEBUG_ON true)
|
|
|
|
else()
|
|
|
|
set(SPDLOG_DEBUG_ON false)
|
|
|
|
endif()
|
2018-09-30 14:33:54 +03:00
|
|
|
endif()
|
|
|
|
|
2018-03-22 17:20:22 +03:00
|
|
|
find_program(GIT git)
|
|
|
|
if(GIT)
|
2023-09-24 05:29:50 +03:00
|
|
|
execute_process(
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
|
|
|
COMMAND ${GIT} rev-parse --short HEAD
|
|
|
|
OUTPUT_VARIABLE GIT_OUT OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
if(GIT_OUT)
|
|
|
|
set(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}-${GIT_OUT}")
|
|
|
|
else()
|
|
|
|
set(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}")
|
|
|
|
endif()
|
2018-03-22 17:20:22 +03:00
|
|
|
endif(GIT)
|
2017-04-11 18:25:39 +03:00
|
|
|
|
|
|
|
set(CPACK_PACKAGE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
|
|
|
|
set(PROJECT_VERSION ${CPACK_PACKAGE_VERSION})
|
|
|
|
|
|
|
|
message(STATUS "Version: ${PROJECT_VERSION}")
|
|
|
|
|
2018-03-22 17:20:22 +03:00
|
|
|
cmake_host_system_information(RESULT BUILD_HOST QUERY HOSTNAME)
|
2021-06-30 16:01:41 +03:00
|
|
|
|
|
|
|
include(CheckSymbolExists)
|
|
|
|
check_symbol_exists(backtrace_symbols_fd "execinfo.h" HAVE_BACKTRACE_SYMBOLS_FD)
|
|
|
|
|
2018-09-30 14:33:54 +03:00
|
|
|
configure_file(cmake/nheko.h config/nheko.h)
|
2018-03-22 17:20:22 +03:00
|
|
|
|
2017-07-09 12:49:17 +03:00
|
|
|
#
|
|
|
|
# Declare source and header files.
|
|
|
|
#
|
2017-04-06 02:06:42 +03:00
|
|
|
set(SRC_FILES
|
2023-09-24 05:29:50 +03:00
|
|
|
# Emoji
|
|
|
|
src/emoji/Provider.cpp
|
|
|
|
src/emoji/Provider.h
|
2024-05-01 20:38:29 +03:00
|
|
|
src/emoji/Emoji.cpp
|
|
|
|
src/emoji/Emoji.h
|
2023-09-24 05:29:50 +03:00
|
|
|
|
|
|
|
# Timeline
|
|
|
|
src/timeline/CommunitiesModel.cpp
|
|
|
|
src/timeline/CommunitiesModel.h
|
|
|
|
src/timeline/DelegateChooser.cpp
|
|
|
|
src/timeline/DelegateChooser.h
|
|
|
|
src/timeline/EventStore.cpp
|
|
|
|
src/timeline/EventStore.h
|
2023-10-10 01:33:39 +03:00
|
|
|
src/timeline/EventDelegateChooser.cpp
|
|
|
|
src/timeline/EventDelegateChooser.h
|
2023-09-24 05:29:50 +03:00
|
|
|
src/timeline/InputBar.cpp
|
|
|
|
src/timeline/InputBar.h
|
|
|
|
src/timeline/Permissions.cpp
|
|
|
|
src/timeline/Permissions.h
|
|
|
|
src/timeline/PresenceEmitter.cpp
|
|
|
|
src/timeline/PresenceEmitter.h
|
|
|
|
src/timeline/Reaction.cpp
|
|
|
|
src/timeline/Reaction.h
|
|
|
|
src/timeline/RoomlistModel.cpp
|
|
|
|
src/timeline/RoomlistModel.h
|
|
|
|
src/timeline/TimelineFilter.cpp
|
|
|
|
src/timeline/TimelineFilter.h
|
|
|
|
src/timeline/TimelineModel.cpp
|
|
|
|
src/timeline/TimelineModel.h
|
|
|
|
src/timeline/TimelineViewManager.cpp
|
|
|
|
src/timeline/TimelineViewManager.h
|
|
|
|
|
|
|
|
# UI components
|
|
|
|
src/ui/HiddenEvents.cpp
|
|
|
|
src/ui/HiddenEvents.h
|
|
|
|
src/ui/EventExpiry.cpp
|
|
|
|
src/ui/EventExpiry.h
|
|
|
|
src/ui/MxcAnimatedImage.cpp
|
|
|
|
src/ui/MxcAnimatedImage.h
|
|
|
|
src/ui/MxcMediaProxy.cpp
|
|
|
|
src/ui/MxcMediaProxy.h
|
|
|
|
src/ui/NhekoCursorShape.cpp
|
|
|
|
src/ui/NhekoCursorShape.h
|
|
|
|
src/ui/NhekoDropArea.cpp
|
|
|
|
src/ui/NhekoDropArea.h
|
|
|
|
src/ui/NhekoGlobalObject.cpp
|
|
|
|
src/ui/NhekoGlobalObject.h
|
|
|
|
src/ui/RoomSettings.cpp
|
|
|
|
src/ui/RoomSettings.h
|
|
|
|
src/ui/RoomSummary.cpp
|
|
|
|
src/ui/RoomSummary.h
|
|
|
|
src/ui/Theme.cpp
|
|
|
|
src/ui/Theme.h
|
|
|
|
src/ui/UIA.cpp
|
|
|
|
src/ui/UIA.h
|
|
|
|
src/ui/UserProfile.cpp
|
|
|
|
src/ui/UserProfile.h
|
|
|
|
|
|
|
|
src/voip/CallDevices.cpp
|
|
|
|
src/voip/CallDevices.h
|
|
|
|
src/voip/CallManager.cpp
|
|
|
|
src/voip/CallManager.h
|
|
|
|
src/voip/ScreenCastPortal.cpp
|
|
|
|
src/voip/ScreenCastPortal.h
|
|
|
|
src/voip/WebRTCSession.h
|
|
|
|
src/voip/WebRTCSession.cpp
|
|
|
|
src/voip/WebRTCSession.h
|
|
|
|
|
|
|
|
src/encryption/DeviceVerificationFlow.cpp
|
|
|
|
src/encryption/DeviceVerificationFlow.h
|
|
|
|
src/encryption/Olm.cpp
|
|
|
|
src/encryption/Olm.h
|
|
|
|
src/encryption/SelfVerificationStatus.cpp
|
|
|
|
src/encryption/SelfVerificationStatus.h
|
|
|
|
src/encryption/VerificationManager.cpp
|
|
|
|
src/encryption/VerificationManager.h
|
|
|
|
|
|
|
|
# Generic notification stuff
|
|
|
|
src/notifications/Manager.cpp
|
|
|
|
src/notifications/Manager.h
|
|
|
|
|
|
|
|
src/dock/Dock.cpp
|
|
|
|
src/dock/Dock.h
|
|
|
|
|
|
|
|
src/AliasEditModel.cpp
|
|
|
|
src/AliasEditModel.h
|
|
|
|
src/AvatarProvider.cpp
|
|
|
|
src/AvatarProvider.h
|
|
|
|
src/BlurhashProvider.cpp
|
|
|
|
src/BlurhashProvider.h
|
|
|
|
src/Cache.cpp
|
|
|
|
src/Cache.h
|
2024-03-16 05:55:57 +03:00
|
|
|
src/CacheCryptoStructs.cpp
|
2023-09-24 05:29:50 +03:00
|
|
|
src/CacheCryptoStructs.h
|
|
|
|
src/CacheStructs.h
|
|
|
|
src/Cache_p.h
|
|
|
|
src/ChatPage.cpp
|
|
|
|
src/ChatPage.h
|
|
|
|
src/Clipboard.cpp
|
|
|
|
src/Clipboard.h
|
|
|
|
src/ColorImageProvider.cpp
|
|
|
|
src/ColorImageProvider.h
|
|
|
|
src/CombinedImagePackModel.cpp
|
|
|
|
src/CombinedImagePackModel.h
|
|
|
|
src/GridImagePackModel.cpp
|
|
|
|
src/GridImagePackModel.h
|
|
|
|
src/CommandCompleter.cpp
|
|
|
|
src/CommandCompleter.h
|
|
|
|
src/CompletionModelRoles.h
|
|
|
|
src/CompletionProxyModel.cpp
|
|
|
|
src/CompletionProxyModel.h
|
|
|
|
src/Config.h
|
|
|
|
src/EventAccessors.cpp
|
|
|
|
src/EventAccessors.h
|
|
|
|
src/FallbackAuth.cpp
|
|
|
|
src/FallbackAuth.h
|
|
|
|
src/ImagePackListModel.cpp
|
|
|
|
src/ImagePackListModel.h
|
|
|
|
src/InviteesModel.cpp
|
|
|
|
src/InviteesModel.h
|
|
|
|
src/JdenticonProvider.cpp
|
|
|
|
src/JdenticonProvider.h
|
|
|
|
src/Logging.cpp
|
|
|
|
src/Logging.h
|
|
|
|
src/LoginPage.cpp
|
|
|
|
src/LoginPage.h
|
|
|
|
src/MainWindow.cpp
|
|
|
|
src/MainWindow.h
|
|
|
|
src/MatrixClient.cpp
|
|
|
|
src/MatrixClient.h
|
|
|
|
src/MemberList.cpp
|
|
|
|
src/MemberList.h
|
|
|
|
src/MxcImageProvider.cpp
|
|
|
|
src/MxcImageProvider.h
|
|
|
|
src/PowerlevelsEditModels.cpp
|
|
|
|
src/PowerlevelsEditModels.h
|
|
|
|
src/ReadReceiptsModel.cpp
|
|
|
|
src/ReadReceiptsModel.h
|
|
|
|
src/ReCaptcha.cpp
|
|
|
|
src/ReCaptcha.h
|
|
|
|
src/RegisterPage.cpp
|
|
|
|
src/RegisterPage.h
|
|
|
|
src/RoomDirectoryModel.cpp
|
|
|
|
src/RoomDirectoryModel.h
|
|
|
|
src/RoomsModel.cpp
|
|
|
|
src/RoomsModel.h
|
|
|
|
src/SSOHandler.cpp
|
|
|
|
src/SSOHandler.h
|
|
|
|
src/SingleImagePackModel.cpp
|
|
|
|
src/SingleImagePackModel.h
|
|
|
|
src/TrayIcon.cpp
|
|
|
|
src/TrayIcon.h
|
|
|
|
src/UserSettingsPage.cpp
|
|
|
|
src/UserSettingsPage.h
|
|
|
|
src/UsersModel.cpp
|
|
|
|
src/UsersModel.h
|
|
|
|
src/Utils.cpp
|
|
|
|
src/Utils.h
|
|
|
|
|
|
|
|
includes/jdenticoninterface.h
|
|
|
|
|
|
|
|
src/main.cpp
|
|
|
|
)
|
2018-03-29 09:59:04 +03:00
|
|
|
|
2019-02-24 22:50:31 +03:00
|
|
|
include(FeatureSummary)
|
|
|
|
|
2020-01-24 19:35:49 +03:00
|
|
|
if(USE_BUNDLED_OPENSSL)
|
2023-09-24 05:29:50 +03:00
|
|
|
hunter_add_package_safe(OpenSSL)
|
2020-01-24 19:35:49 +03:00
|
|
|
endif()
|
2020-07-01 01:46:44 +03:00
|
|
|
find_package(OpenSSL 1.1.0 REQUIRED)
|
2020-01-24 19:35:49 +03:00
|
|
|
if(USE_BUNDLED_OLM)
|
2023-09-24 05:29:50 +03:00
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
|
|
Olm
|
|
|
|
GIT_REPOSITORY https://gitlab.matrix.org/matrix-org/olm.git
|
|
|
|
GIT_TAG 3.2.12
|
|
|
|
)
|
|
|
|
set(OLM_TESTS OFF CACHE INTERNAL "")
|
|
|
|
FetchContent_MakeAvailable(Olm)
|
2020-01-24 19:35:49 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(Olm 3.2.7 REQUIRED)
|
|
|
|
set_package_properties(Olm PROPERTIES
|
|
|
|
DESCRIPTION "An implementation of the Double Ratchet cryptographic ratchet"
|
|
|
|
URL "https://git.matrix.org/git/olm/about/"
|
|
|
|
TYPE REQUIRED
|
|
|
|
)
|
2020-01-24 19:35:49 +03:00
|
|
|
endif()
|
|
|
|
if(USE_BUNDLED_SPDLOG)
|
2023-09-24 05:29:50 +03:00
|
|
|
hunter_add_package_safe(spdlog)
|
2020-01-24 19:35:49 +03:00
|
|
|
endif()
|
2018-08-08 14:15:14 +03:00
|
|
|
find_package(spdlog 1.0.0 CONFIG REQUIRED)
|
2020-01-24 19:35:49 +03:00
|
|
|
|
|
|
|
if(USE_BUNDLED_CMARK)
|
2023-09-24 05:29:50 +03:00
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
|
|
cmark
|
|
|
|
GIT_REPOSITORY https://github.com/commonmark/cmark.git
|
|
|
|
GIT_TAG 0.30.2
|
|
|
|
CMAKE_ARGS "CMARK_STATIC=ON CMARK_SHARED=OFF CMARK_TESTS=OFF CMARK_TESTS=OFF"
|
|
|
|
)
|
|
|
|
FetchContent_MakeAvailable(cmark)
|
|
|
|
if(MSVC)
|
|
|
|
add_library(cmark::cmark ALIAS cmark)
|
|
|
|
else()
|
|
|
|
add_library(cmark::cmark ALIAS cmark_static)
|
|
|
|
endif()
|
2020-01-24 19:35:49 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(cmark REQUIRED 0.29.0)
|
2020-01-24 19:35:49 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(USE_BUNDLED_JSON)
|
2023-09-24 05:29:50 +03:00
|
|
|
hunter_add_package_safe(nlohmann_json)
|
2020-01-24 19:35:49 +03:00
|
|
|
endif()
|
2019-02-24 22:50:31 +03:00
|
|
|
find_package(nlohmann_json 3.2.0)
|
|
|
|
set_package_properties(nlohmann_json PROPERTIES
|
2023-09-24 05:29:50 +03:00
|
|
|
DESCRIPTION "JSON for Modern C++, a C++11 header-only JSON class"
|
|
|
|
URL "https://nlohmann.github.io/json/"
|
|
|
|
TYPE REQUIRED
|
|
|
|
)
|
2018-03-03 14:02:33 +03:00
|
|
|
|
2020-01-24 19:35:49 +03:00
|
|
|
if(USE_BUNDLED_LMDBXX)
|
2023-09-24 05:29:50 +03:00
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
|
|
lmdbxx
|
|
|
|
URL "https://raw.githubusercontent.com/hoytech/lmdbxx/1.0.0/lmdb++.h"
|
|
|
|
DOWNLOAD_NO_EXTRACT TRUE
|
|
|
|
CONFIGURE_COMMAND ""
|
|
|
|
BUILD_COMMAND ""
|
|
|
|
)
|
|
|
|
FetchContent_Populate(lmdbxx)
|
|
|
|
add_library(lmdbxx INTERFACE)
|
|
|
|
target_include_directories(lmdbxx INTERFACE ${lmdbxx_SOURCE_DIR})
|
|
|
|
add_library(lmdbxx::lmdbxx ALIAS lmdbxx)
|
2020-01-24 19:35:49 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
if(NOT LMDBXX_INCLUDE_DIR)
|
|
|
|
find_path(LMDBXX_INCLUDE_DIR
|
|
|
|
NAMES lmdb++.h
|
|
|
|
PATHS /usr/include
|
|
|
|
/usr/local/include
|
|
|
|
$ENV{LIB_DIR}/include
|
|
|
|
$ENV{LIB_DIR}/include/lmdbxx)
|
|
|
|
endif()
|
|
|
|
add_library(lmdbxx INTERFACE)
|
|
|
|
target_include_directories(lmdbxx INTERFACE ${LMDBXX_INCLUDE_DIR})
|
|
|
|
add_library(lmdbxx::lmdbxx ALIAS lmdbxx)
|
2018-03-29 09:59:04 +03:00
|
|
|
endif()
|
2017-08-06 11:01:46 +03:00
|
|
|
|
2022-06-09 03:41:25 +03:00
|
|
|
if(USE_BUNDLED_MTXCLIENT)
|
2023-09-24 05:29:50 +03:00
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
|
|
MatrixClient
|
|
|
|
GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git
|
2024-08-05 20:39:15 +03:00
|
|
|
GIT_TAG a0b203980491ddf2e2fe4f1cd6af8c2562b3ee35
|
2023-09-24 05:29:50 +03:00
|
|
|
)
|
|
|
|
set(BUILD_LIB_EXAMPLES OFF CACHE INTERNAL "")
|
|
|
|
set(BUILD_LIB_TESTS OFF CACHE INTERNAL "")
|
|
|
|
FetchContent_MakeAvailable(MatrixClient)
|
2022-06-09 03:41:25 +03:00
|
|
|
else()
|
2024-06-11 01:25:23 +03:00
|
|
|
find_package(MatrixClient 0.10.0 REQUIRED)
|
2022-06-09 03:41:25 +03:00
|
|
|
endif()
|
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(VOIP)
|
|
|
|
include(FindPkgConfig)
|
2023-11-10 01:55:42 +03:00
|
|
|
pkg_check_modules(GSTREAMER REQUIRED IMPORTED_TARGET gstreamer-sdp-1.0>=1.18 gstreamer-webrtc-1.0>=1.18 gstreamer-gl-1.0)
|
2024-05-10 22:22:58 +03:00
|
|
|
if (WIN32)
|
|
|
|
pkg_check_modules(GSTREAMER REQUIRED IMPORTED_TARGET gstreamer-d3d11-1.0)
|
|
|
|
endif()
|
2023-06-03 03:45:38 +03:00
|
|
|
endif()
|
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(X11 AND NOT WIN32 AND NOT APPLE AND NOT HAIKU)
|
|
|
|
pkg_check_modules(XCB REQUIRED IMPORTED_TARGET xcb xcb-ewmh)
|
2021-01-06 18:47:35 +03:00
|
|
|
endif()
|
2020-07-11 02:19:48 +03:00
|
|
|
|
2019-02-24 22:50:31 +03:00
|
|
|
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
|
|
|
|
2022-04-14 18:02:55 +03:00
|
|
|
# this must be defined here to make the moc work properly
|
2023-09-24 05:29:50 +03:00
|
|
|
if(NOT APPLE AND NOT WIN32)
|
|
|
|
add_compile_definitions(NHEKO_DBUS_SYS)
|
2022-04-14 18:02:55 +03:00
|
|
|
endif()
|
|
|
|
|
2017-07-09 12:49:17 +03:00
|
|
|
#
|
2023-06-08 23:44:16 +03:00
|
|
|
# Bundle resources
|
2017-07-09 12:49:17 +03:00
|
|
|
#
|
2024-01-08 02:21:42 +03:00
|
|
|
qt_add_resources(QRC resources/res.qrc)
|
2023-09-24 05:29:50 +03:00
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework Foundation -framework Cocoa -framework UserNotifications")
|
2024-09-25 13:11:01 +03:00
|
|
|
set(SRC_FILES ${SRC_FILES} src/notifications/NotificationManagerProxy.h src/notifications/MacNotificationDelegate.h src/notifications/MacNotificationDelegate.mm src/notifications/ManagerMac.mm src/notifications/ManagerMac.cpp)
|
2023-09-24 05:29:50 +03:00
|
|
|
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.16.0")
|
2024-09-25 13:11:01 +03:00
|
|
|
set_source_files_properties( src/notifications/NotificationManagerProxy.h src/notifications/MacNotificationDelegate.h src/notifications/MacNotificationDelegate.mm src/notifications/ManagerMac.mm PROPERTIES SKIP_PRECOMPILE_HEADERS ON)
|
2023-09-24 05:29:50 +03:00
|
|
|
endif()
|
|
|
|
elseif(WIN32)
|
|
|
|
file(DOWNLOAD
|
2023-12-10 06:53:44 +03:00
|
|
|
"https://raw.githubusercontent.com/mohabouje/WinToast/v1.3.0/src/wintoastlib.cpp"
|
2023-09-24 05:29:50 +03:00
|
|
|
${PROJECT_SOURCE_DIR}/src/wintoastlib.cpp
|
2023-12-10 06:53:44 +03:00
|
|
|
EXPECTED_HASH SHA256=1ddf8ee2604e1757d383a2f60d4d597c4f5d9496369e6a22586cedf4af77ca8f)
|
2023-09-24 05:29:50 +03:00
|
|
|
|
|
|
|
file(DOWNLOAD
|
2023-12-10 06:53:44 +03:00
|
|
|
"https://raw.githubusercontent.com/mohabouje/WinToast/v1.3.0/include/wintoastlib.h"
|
2023-09-24 05:29:50 +03:00
|
|
|
${PROJECT_SOURCE_DIR}/src/wintoastlib.h
|
2023-12-10 06:53:44 +03:00
|
|
|
EXPECTED_HASH SHA256=08cb30d28db9c851d3d4259ae6108ce7dafa966957df6735a06cd55e0716fded)
|
2023-09-24 05:29:50 +03:00
|
|
|
|
|
|
|
set(SRC_FILES ${SRC_FILES} src/notifications/ManagerWin.cpp src/wintoastlib.cpp src/wintoastlib.h)
|
2023-06-08 23:44:16 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
set(SRC_FILES ${SRC_FILES}
|
2022-06-09 15:59:29 +03:00
|
|
|
src/dbus/NhekoDBusApi.h
|
|
|
|
src/dbus/NhekoDBusBackend.h
|
2022-04-14 18:02:55 +03:00
|
|
|
src/dbus/NhekoDBusApi.cpp
|
|
|
|
src/dbus/NhekoDBusBackend.cpp
|
|
|
|
src/notifications/ManagerLinux.cpp
|
2023-09-24 05:29:50 +03:00
|
|
|
)
|
|
|
|
endif()
|
2018-05-05 22:40:24 +03:00
|
|
|
|
2018-03-29 09:59:04 +03:00
|
|
|
set(NHEKO_DEPS
|
2023-09-24 05:29:50 +03:00
|
|
|
${SRC_FILES}
|
|
|
|
${QRC}
|
|
|
|
${META_FILES_TO_INCLUDE})
|
2017-10-08 16:49:56 +03:00
|
|
|
|
2018-05-04 18:11:03 +03:00
|
|
|
if(ASAN)
|
2023-09-24 05:29:50 +03:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address,undefined")
|
2018-05-04 18:11:03 +03:00
|
|
|
endif()
|
|
|
|
|
2020-03-23 13:09:27 +03:00
|
|
|
if(WIN32)
|
2023-09-24 05:29:50 +03:00
|
|
|
qt_add_executable(nheko WIN32 ${OS_BUNDLE} ${NHEKO_DEPS})
|
|
|
|
target_compile_definitions(nheko PRIVATE _WIN32_WINNT=0x0601 NOMINMAX WIN32_LEAN_AND_MEAN STRICT)
|
2020-03-23 13:09:27 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
qt_add_executable(nheko ${OS_BUNDLE} ${NHEKO_DEPS})
|
2021-06-30 16:01:41 +03:00
|
|
|
|
2024-01-25 07:39:51 +03:00
|
|
|
if(APPLE)
|
|
|
|
set_target_properties(nheko PROPERTIES MACOSX_BUNDLE_INFO_PLIST
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/MacOSXBundleInfo.plist.in")
|
|
|
|
endif()
|
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(HAVE_BACKTRACE_SYMBOLS_FD AND NOT CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
|
|
set_target_properties(nheko PROPERTIES ENABLE_EXPORTS ON)
|
|
|
|
endif()
|
2020-03-23 13:09:27 +03:00
|
|
|
endif()
|
|
|
|
|
2022-09-23 16:13:59 +03:00
|
|
|
set_target_properties(nheko
|
2023-09-24 05:29:50 +03:00
|
|
|
PROPERTIES
|
|
|
|
CMAKE_SKIP_INSTALL_RPATH TRUE
|
|
|
|
AUTOMOC ON)
|
2022-09-23 16:13:59 +03:00
|
|
|
|
2023-06-19 02:38:40 +03:00
|
|
|
#
|
|
|
|
# Add qml files
|
|
|
|
#
|
|
|
|
|
|
|
|
set(QML_SOURCES
|
2023-09-24 05:29:50 +03:00
|
|
|
resources/qml/Root.qml
|
|
|
|
resources/qml/ChatPage.qml
|
|
|
|
resources/qml/CommunitiesList.qml
|
|
|
|
resources/qml/RoomList.qml
|
|
|
|
resources/qml/Avatar.qml
|
|
|
|
resources/qml/Completer.qml
|
|
|
|
resources/qml/EncryptionIndicator.qml
|
|
|
|
resources/qml/ImageButton.qml
|
|
|
|
resources/qml/ElidedLabel.qml
|
|
|
|
resources/qml/MatrixText.qml
|
|
|
|
resources/qml/MatrixTextField.qml
|
|
|
|
resources/qml/ToggleButton.qml
|
|
|
|
resources/qml/UploadBox.qml
|
|
|
|
resources/qml/MessageInput.qml
|
|
|
|
resources/qml/MessageView.qml
|
|
|
|
resources/qml/PrivacyScreen.qml
|
|
|
|
resources/qml/Reactions.qml
|
|
|
|
resources/qml/ReplyPopup.qml
|
|
|
|
resources/qml/StatusIndicator.qml
|
2023-10-10 01:33:39 +03:00
|
|
|
resources/qml/TimelineEvent.qml
|
|
|
|
resources/qml/TimelineSectionHeader.qml
|
|
|
|
resources/qml/TimelineDefaultMessageStyle.qml
|
|
|
|
resources/qml/TimelineBubbleMessageStyle.qml
|
|
|
|
resources/qml/TimelineMetadata.qml
|
|
|
|
resources/qml/TimelineView.qml
|
2023-09-24 05:29:50 +03:00
|
|
|
resources/qml/TopBar.qml
|
|
|
|
resources/qml/QuickSwitcher.qml
|
|
|
|
resources/qml/ForwardCompleter.qml
|
|
|
|
resources/qml/SelfVerificationCheck.qml
|
|
|
|
resources/qml/TypingIndicator.qml
|
|
|
|
resources/qml/MessageInputWarning.qml
|
|
|
|
resources/qml/components/AdaptiveLayout.qml
|
|
|
|
resources/qml/components/AdaptiveLayoutElement.qml
|
|
|
|
resources/qml/components/AvatarListTile.qml
|
|
|
|
resources/qml/components/FlatButton.qml
|
|
|
|
resources/qml/components/MainWindowDialog.qml
|
|
|
|
resources/qml/components/NhekoTabButton.qml
|
|
|
|
resources/qml/components/NotificationBubble.qml
|
|
|
|
resources/qml/components/PowerlevelIndicator.qml
|
|
|
|
resources/qml/components/ReorderableListview.qml
|
|
|
|
resources/qml/components/SpaceMenuLevel.qml
|
|
|
|
resources/qml/components/TextButton.qml
|
|
|
|
resources/qml/components/UserListRow.qml
|
|
|
|
resources/qml/delegates/Encrypted.qml
|
|
|
|
resources/qml/delegates/FileMessage.qml
|
|
|
|
resources/qml/delegates/ImageMessage.qml
|
|
|
|
resources/qml/delegates/NoticeMessage.qml
|
|
|
|
resources/qml/delegates/Pill.qml
|
|
|
|
resources/qml/delegates/Placeholder.qml
|
|
|
|
resources/qml/delegates/PlayableMediaMessage.qml
|
|
|
|
resources/qml/delegates/Redacted.qml
|
|
|
|
resources/qml/delegates/Reply.qml
|
|
|
|
resources/qml/delegates/TextMessage.qml
|
|
|
|
resources/qml/device-verification/DeviceVerification.qml
|
|
|
|
resources/qml/device-verification/DigitVerification.qml
|
|
|
|
resources/qml/device-verification/EmojiVerification.qml
|
|
|
|
resources/qml/device-verification/Failed.qml
|
|
|
|
resources/qml/device-verification/NewVerificationRequest.qml
|
|
|
|
resources/qml/device-verification/Success.qml
|
|
|
|
resources/qml/device-verification/Waiting.qml
|
|
|
|
resources/qml/dialogs/AliasEditor.qml
|
|
|
|
resources/qml/dialogs/ConfirmJoinRoomDialog.qml
|
|
|
|
resources/qml/dialogs/CreateDirect.qml
|
|
|
|
resources/qml/dialogs/CreateRoom.qml
|
|
|
|
resources/qml/dialogs/FallbackAuthDialog.qml
|
|
|
|
resources/qml/dialogs/HiddenEventsDialog.qml
|
|
|
|
resources/qml/dialogs/EventExpirationDialog.qml
|
|
|
|
resources/qml/dialogs/ImageOverlay.qml
|
|
|
|
resources/qml/dialogs/ImagePackEditorDialog.qml
|
2023-12-07 02:59:03 +03:00
|
|
|
resources/qml/dialogs/ImagePackDeleteDialog.qml
|
2023-09-24 05:29:50 +03:00
|
|
|
resources/qml/dialogs/ImagePackSettingsDialog.qml
|
|
|
|
resources/qml/dialogs/InputDialog.qml
|
|
|
|
resources/qml/dialogs/InviteDialog.qml
|
|
|
|
resources/qml/dialogs/JoinRoomDialog.qml
|
|
|
|
resources/qml/dialogs/LeaveRoomDialog.qml
|
|
|
|
resources/qml/dialogs/LogoutDialog.qml
|
|
|
|
resources/qml/dialogs/PhoneNumberInputDialog.qml
|
|
|
|
resources/qml/dialogs/PowerLevelEditor.qml
|
|
|
|
resources/qml/dialogs/PowerLevelSpacesApplyDialog.qml
|
|
|
|
resources/qml/dialogs/RawMessageDialog.qml
|
|
|
|
resources/qml/dialogs/ReadReceipts.qml
|
|
|
|
resources/qml/dialogs/ReCaptchaDialog.qml
|
2023-07-25 02:07:45 +03:00
|
|
|
resources/qml/dialogs/ReportMessage.qml
|
2023-09-24 05:29:50 +03:00
|
|
|
resources/qml/dialogs/RoomDirectory.qml
|
|
|
|
resources/qml/dialogs/RoomMembers.qml
|
|
|
|
resources/qml/dialogs/AllowedRoomsSettingsDialog.qml
|
2023-10-26 02:51:45 +03:00
|
|
|
resources/qml/dialogs/RoomSettingsDialog.qml
|
2023-09-24 05:29:50 +03:00
|
|
|
resources/qml/dialogs/UserProfile.qml
|
2023-07-28 04:04:34 +03:00
|
|
|
resources/qml/dialogs/IgnoredUsers.qml
|
2023-09-24 05:29:50 +03:00
|
|
|
resources/qml/emoji/StickerPicker.qml
|
|
|
|
resources/qml/pages/LoginPage.qml
|
|
|
|
resources/qml/pages/RegisterPage.qml
|
|
|
|
resources/qml/pages/UserSettingsPage.qml
|
|
|
|
resources/qml/pages/WelcomePage.qml
|
|
|
|
resources/qml/ui/NhekoSlider.qml
|
|
|
|
resources/qml/ui/Ripple.qml
|
|
|
|
resources/qml/ui/Snackbar.qml
|
|
|
|
resources/qml/ui/Spinner.qml
|
|
|
|
resources/qml/ui/animations/BlinkAnimation.qml
|
|
|
|
resources/qml/ui/media/MediaControls.qml
|
|
|
|
resources/qml/voip/ActiveCallBar.qml
|
|
|
|
resources/qml/voip/CallDevices.qml
|
|
|
|
resources/qml/voip/CallInvite.qml
|
|
|
|
resources/qml/voip/CallInviteBar.qml
|
|
|
|
resources/qml/voip/DeviceError.qml
|
|
|
|
resources/qml/voip/PlaceCall.qml
|
|
|
|
resources/qml/voip/ScreenShare.qml
|
|
|
|
resources/qml/voip/VideoCall.qml
|
2024-05-10 22:22:58 +03:00
|
|
|
resources/qml/voip/VideoCallD3D11.qml
|
2023-09-24 05:29:50 +03:00
|
|
|
resources/qml/delegates/EncryptionEnabled.qml
|
|
|
|
resources/qml/ui/TimelineEffects.qml
|
2023-06-19 02:38:40 +03:00
|
|
|
)
|
|
|
|
qt_add_qml_module(nheko
|
2023-09-24 05:29:50 +03:00
|
|
|
URI im.nheko
|
|
|
|
NO_RESOURCE_TARGET_PATH
|
|
|
|
RESOURCE_PREFIX "/"
|
|
|
|
VERSION 1.1
|
2023-10-26 02:51:45 +03:00
|
|
|
DEPENDENCIES QtQuick QtQml.Models
|
2023-09-24 05:29:50 +03:00
|
|
|
QML_FILES
|
|
|
|
${QML_SOURCES}
|
|
|
|
SOURCES
|
|
|
|
src/UserDirectoryModel.cpp
|
|
|
|
src/UserDirectoryModel.h
|
|
|
|
)
|
|
|
|
#qt_target_qml_sources(nheko
|
|
|
|
# #PREFIX "/"
|
|
|
|
#)
|
2023-06-19 02:38:40 +03:00
|
|
|
|
2023-10-26 02:51:45 +03:00
|
|
|
#set_target_properties(nheko PROPERTIES
|
|
|
|
# QT_QMLCACHEGEN_ARGUMENTS "--verbose"
|
|
|
|
#)
|
|
|
|
|
2023-07-13 02:10:09 +03:00
|
|
|
#
|
|
|
|
# Bundle translations
|
|
|
|
#
|
|
|
|
file(GLOB LANG_TS_SRC "${CMAKE_CURRENT_SOURCE_DIR}/resources/langs/*.ts")
|
|
|
|
qt_add_translations(nheko RESOURCE_PREFIX "/translations" TS_FILES
|
2023-09-24 05:29:50 +03:00
|
|
|
${LANG_TS_SRC} SOURCES ${QML_SOURCES} ${SRC_FILES})
|
2023-07-13 02:10:09 +03:00
|
|
|
|
2023-06-03 05:06:13 +03:00
|
|
|
if(WIN32)
|
2023-09-24 05:29:50 +03:00
|
|
|
target_compile_definitions(nheko PRIVATE WIN32_LEAN_AND_MEAN)
|
2024-05-10 22:22:58 +03:00
|
|
|
target_link_libraries(nheko PRIVATE Qt6::DBus)
|
2023-09-24 05:29:50 +03:00
|
|
|
if(MSVC)
|
|
|
|
target_compile_options(nheko PUBLIC "/Zc:__cplusplus")
|
|
|
|
endif()
|
2017-10-08 16:49:56 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
target_link_libraries(nheko PRIVATE Qt6::DBus)
|
|
|
|
if(FLATPAK)
|
|
|
|
target_compile_definitions(nheko PRIVATE NHEKO_FLATPAK)
|
|
|
|
endif()
|
2017-05-02 04:22:33 +03:00
|
|
|
endif()
|
2022-06-09 15:59:29 +03:00
|
|
|
|
2023-06-19 02:38:40 +03:00
|
|
|
target_include_directories(nheko PRIVATE src includes src/timeline/ src/ui/ src/encryption/ src/voip/)
|
2018-01-09 21:34:01 +03:00
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(USE_BUNDLED_CPPHTTPLIB)
|
|
|
|
target_include_directories(nheko PRIVATE third_party/cpp-httplib-0.5.12)
|
|
|
|
target_sources(nheko PRIVATE third_party/cpp-httplib-0.5.12/httplib.h)
|
2023-02-15 12:36:56 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(httplib REQUIRED)
|
|
|
|
target_link_libraries(nheko PRIVATE httplib::httplib)
|
2023-02-15 12:36:56 +03:00
|
|
|
endif()
|
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(USE_BUNDLED_BLURHASH)
|
|
|
|
target_include_directories(nheko PRIVATE third_party/blurhash)
|
|
|
|
set(BLURHASH_SRC_FILES
|
|
|
|
third_party/blurhash/blurhash.cpp
|
|
|
|
third_party/blurhash/blurhash.hpp
|
|
|
|
)
|
|
|
|
target_sources(nheko PRIVATE ${BLURHASH_SRC_FILES})
|
2023-02-16 17:26:02 +03:00
|
|
|
else()
|
2023-09-24 05:29:50 +03:00
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
pkg_check_modules(blurhash REQUIRED IMPORTED_TARGET blurhash)
|
|
|
|
target_link_libraries(nheko PRIVATE PkgConfig::blurhash)
|
2023-02-16 17:26:02 +03:00
|
|
|
endif()
|
|
|
|
|
2020-12-18 05:21:17 +03:00
|
|
|
# Fixup bundled keychain include dirs
|
2023-09-24 05:29:50 +03:00
|
|
|
if(USE_BUNDLED_QTKEYCHAIN)
|
|
|
|
target_include_directories(nheko PRIVATE ${qt6keychain_SOURCE_DIR} ${qt6keychain_BINARY_DIR})
|
2020-12-18 05:21:17 +03:00
|
|
|
endif()
|
2023-11-20 04:38:58 +03:00
|
|
|
if(USE_BUNDLED_KDSINGLEAPPLICATION)
|
|
|
|
target_include_directories(nheko PRIVATE ${kdsingleapplication_SOURCE_DIR} ${kdsingleapplication_BINARY_DIR})
|
|
|
|
endif()
|
2020-12-18 05:21:17 +03:00
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(NOT JSON_ImplicitConversions)
|
|
|
|
set_target_properties(nlohmann_json::nlohmann_json PROPERTIES
|
|
|
|
INTERFACE_COMPILE_DEFINITIONS "JSON_USE_IMPLICIT_CONVERSIONS=\$<BOOL:OFF>;JSON_DIAGNOSTICS=\$<BOOL:OFF>"
|
|
|
|
)
|
|
|
|
target_compile_definitions(nheko PUBLIC JSON_USE_IMPLICIT_CONVERSIONS=0)
|
2022-06-17 04:27:29 +03:00
|
|
|
endif()
|
|
|
|
|
2020-01-25 02:58:22 +03:00
|
|
|
target_link_libraries(nheko PRIVATE
|
2023-09-24 05:29:50 +03:00
|
|
|
${COEURL_TARGET_NAME}
|
|
|
|
MatrixClient::MatrixClient
|
|
|
|
cmark::cmark
|
2024-08-05 20:30:46 +03:00
|
|
|
fmt::fmt
|
2023-09-24 05:29:50 +03:00
|
|
|
spdlog::spdlog
|
|
|
|
Qt::Widgets
|
|
|
|
Qt::Svg
|
|
|
|
Qt::Gui
|
|
|
|
Qt::Multimedia
|
|
|
|
Qt::Qml
|
2023-10-10 01:33:39 +03:00
|
|
|
Qt::QmlPrivate
|
2023-09-24 05:29:50 +03:00
|
|
|
Qt::QuickControls2
|
|
|
|
qt6keychain
|
2023-11-20 04:38:58 +03:00
|
|
|
KDAB::kdsingleapplication
|
2023-09-24 05:29:50 +03:00
|
|
|
nlohmann_json::nlohmann_json
|
|
|
|
lmdbxx::lmdbxx
|
2023-11-20 04:38:58 +03:00
|
|
|
liblmdb::lmdb)
|
|
|
|
|
2023-11-20 05:20:26 +03:00
|
|
|
if(UNIX)
|
|
|
|
# for wayland activation tokens
|
|
|
|
target_link_libraries(nheko PRIVATE Qt::GuiPrivate)
|
|
|
|
endif()
|
2020-01-25 02:58:22 +03:00
|
|
|
|
2020-05-25 14:02:31 +03:00
|
|
|
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.16.0")
|
2023-09-24 05:29:50 +03:00
|
|
|
target_precompile_headers(nheko
|
|
|
|
PRIVATE
|
|
|
|
<string>
|
|
|
|
<algorithm>
|
|
|
|
)
|
2020-05-25 14:02:31 +03:00
|
|
|
endif()
|
|
|
|
|
2023-09-24 05:29:50 +03:00
|
|
|
if(TARGET PkgConfig::GSTREAMER)
|
|
|
|
target_link_libraries(nheko PRIVATE PkgConfig::GSTREAMER)
|
|
|
|
target_compile_definitions(nheko PRIVATE GSTREAMER_AVAILABLE)
|
2023-06-03 03:45:38 +03:00
|
|
|
endif()
|
2023-09-24 05:29:50 +03:00
|
|
|
if(TARGET PkgConfig::XCB)
|
|
|
|
target_link_libraries(nheko PRIVATE PkgConfig::XCB)
|
|
|
|
target_compile_definitions(nheko PRIVATE XCB_AVAILABLE)
|
2020-08-14 02:03:27 +03:00
|
|
|
endif()
|
|
|
|
|
2020-02-14 02:32:08 +03:00
|
|
|
if(MSVC)
|
2023-09-24 05:29:50 +03:00
|
|
|
target_link_libraries(nheko PRIVATE ntdll)
|
2020-01-25 02:58:22 +03:00
|
|
|
endif()
|
|
|
|
|
2023-11-19 21:44:09 +03:00
|
|
|
if(HAIKU)
|
|
|
|
target_link_libraries(nheko PRIVATE network)
|
|
|
|
endif()
|
|
|
|
|
2019-12-15 01:48:02 +03:00
|
|
|
if(QML_DEBUGGING)
|
2023-09-24 05:29:50 +03:00
|
|
|
target_compile_definitions(nheko PRIVATE QML_DEBUGGING)
|
2019-12-15 01:48:02 +03:00
|
|
|
endif()
|
|
|
|
|
2021-02-03 23:39:49 +03:00
|
|
|
if(NOT MSVC AND NOT HAIKU)
|
2023-09-24 05:29:50 +03:00
|
|
|
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug" OR CI_BUILD)
|
|
|
|
target_compile_options(nheko PRIVATE "-Werror")
|
|
|
|
endif()
|
2020-01-25 02:58:22 +03:00
|
|
|
endif()
|
2022-08-15 21:03:45 +03:00
|
|
|
#if(NOT MSVC)
|
2023-09-24 05:29:50 +03:00
|
|
|
# target_link_options(nheko PRIVATE "LINKER:,--gc-sections")
|
2022-08-15 21:03:45 +03:00
|
|
|
#endif()
|
2020-01-25 02:58:22 +03:00
|
|
|
|
2021-12-23 00:34:07 +03:00
|
|
|
if(MAN)
|
2023-09-24 05:29:50 +03:00
|
|
|
add_subdirectory(man)
|
2021-12-23 00:34:07 +03:00
|
|
|
endif()
|
|
|
|
|
2023-06-16 02:08:22 +03:00
|
|
|
# potential workaround for macdeployqt issues
|
|
|
|
if(APPLE)
|
|
|
|
install(TARGETS nheko
|
|
|
|
BUNDLE DESTINATION .
|
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
|
|
)
|
|
|
|
qt_generate_deploy_qml_app_script(
|
|
|
|
TARGET nheko
|
|
|
|
OUTPUT_SCRIPT deploy_script
|
|
|
|
NO_UNSUPPORTED_PLATFORM_ERROR
|
|
|
|
)
|
2023-09-24 05:29:50 +03:00
|
|
|
install(SCRIPT ${deploy_script})
|
2023-06-16 02:08:22 +03:00
|
|
|
endif()
|
|
|
|
|
2018-01-09 21:34:01 +03:00
|
|
|
if(UNIX AND NOT APPLE)
|
2023-09-24 05:29:50 +03:00
|
|
|
if(FLATPAK)
|
|
|
|
set(APPID "im.nheko.Nheko")
|
|
|
|
set_target_properties(nheko PROPERTIES OUTPUT_NAME "${APPID}")
|
|
|
|
else()
|
|
|
|
set(APPID "nheko")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
install(TARGETS nheko RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
|
|
|
install(FILES "resources/nheko-16.png" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/16x16/apps" RENAME "${APPID}.png")
|
|
|
|
install(FILES "resources/nheko-32.png" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/32x32/apps" RENAME "${APPID}.png")
|
|
|
|
install(FILES "resources/nheko-48.png" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/48x48/apps" RENAME "${APPID}.png")
|
|
|
|
install(FILES "resources/nheko-64.png" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/64x64/apps" RENAME "${APPID}.png")
|
|
|
|
install(FILES "resources/nheko-128.png" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/128x128/apps" RENAME "${APPID}.png")
|
|
|
|
install(FILES "resources/nheko-256.png" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/256x256/apps" RENAME "${APPID}.png")
|
|
|
|
install(FILES "resources/nheko-512.png" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/512x512/apps" RENAME "${APPID}.png")
|
|
|
|
install(FILES "resources/nheko.svg" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/apps" RENAME "${APPID}.svg")
|
|
|
|
install(FILES "resources/_nheko" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/zsh/site-functions")
|
|
|
|
|
|
|
|
configure_file("resources/nheko.desktop.in" "resources/nheko.desktop" @ONLY)
|
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/resources/nheko.desktop" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications" RENAME "${APPID}.desktop")
|
|
|
|
configure_file("resources/nheko.appdata.xml.in" "resources/nheko.appdata.xml" @ONLY)
|
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/resources/nheko.appdata.xml" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo" RENAME "${APPID}.appdata.xml")
|
|
|
|
|
|
|
|
if(NOT TARGET uninstall)
|
|
|
|
configure_file(
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
|
|
IMMEDIATE @ONLY)
|
|
|
|
add_custom_target(uninstall
|
|
|
|
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
|
|
|
|
endif()
|
2018-01-09 21:34:01 +03:00
|
|
|
endif()
|
2023-10-10 01:33:39 +03:00
|
|
|
# vim: tabstop=4 shiftwidth=4 expandtab
|