Skip to content
Snippets Groups Projects
CMakeLists.txt 23.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • cmake_minimum_required(VERSION 3.13)
    
    option(APPVEYOR_BUILD "Build on appveyor" OFF)
    
    option(CI_BUILD "Set when building in CI. Enables -Werror where possible" OFF)
    
    option(ASAN "Compile with address sanitizers" OFF)
    
    option(QML_DEBUGGING "Enable qml debugging" OFF)
    
    option(COMPILE_QML "Compile Qml. It will make Nheko faster, but you will need to recompile it, when you update Qt." OFF)
    
    tastytea's avatar
    tastytea committed
    if(UNIX AND NOT APPLE)
    	option(MAN "Build man page" ON)
    else()
    	option(MAN "Build man page" OFF)
    endif()
    
    option(FLATPAK "Set this only if Nheko is built as a flatpak" OFF)
    
    option(JSON_ImplicitConversions "Disable implicit conversions in nlohmann/json" ON)
    
    	CMAKE_TOOLCHAIN_FILE "${CMAKE_CURRENT_LIST_DIR}/toolchain.cmake"
    	CACHE
    	FILEPATH "Default toolchain"
    	)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    set(CMAKE_CXX_STANDARD 20 CACHE STRING "C++ standard")
    
    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")
    
    
    option(HUNTER_ENABLED "Enable Hunter package manager" OFF)
    include("cmake/HunterGate.cmake")
    HunterGate(
    
    Nicolas Werner's avatar
    Nicolas Werner committed
        URL "https://github.com/cpp-pm/hunter/archive/v0.24.8.tar.gz"
        SHA1 "ca7838dded9a1811b04ffd56175f629e0af82d3d"
        LOCAL
    
    macro(hunter_add_package_safe)
    	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}'")
    endmacro()
    
    
    option(USE_BUNDLED_SPDLOG "Use the bundled version of spdlog." ${HUNTER_ENABLED})
    
    option(USE_BUNDLED_OLM "Use the bundled version of libolm." ${HUNTER_ENABLED})
    
    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)
    
    option(USE_BUNDLED_MTXCLIENT "Use the bundled version of the Matrix Client library." ${HUNTER_ENABLED})
    
    option(USE_BUNDLED_LMDB "Use the bundled version of lmdb." ${HUNTER_ENABLED})
    option(USE_BUNDLED_LMDBXX "Use the bundled version of lmdb++." ${HUNTER_ENABLED})
    option(USE_BUNDLED_QTKEYCHAIN "Use the bundled version of Qt5Keychain." ${HUNTER_ENABLED})
    option(USE_BUNDLED_COEURL "Use a bundled version of the Curl wrapper"
    
    	${HUNTER_ENABLED})
    
    option(USE_BUNDLED_LIBEVENT "Use the bundled version of libevent." ${HUNTER_ENABLED})
    option(USE_BUNDLED_LIBCURL "Use the bundled version of libcurl." ${HUNTER_ENABLED})
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    option(USE_BUNDLED_RE2 "Use the bundled version of re2." ${HUNTER_ENABLED})
    
    include(CMakeDependentOption)
    set(VOIP_DEFAULT ON)
    if (APPLE OR WIN32)
    	set(VOIP_DEFAULT OFF)
    endif()
    option(VOIP "Whether to enable voip support. Disable this, if you don't have gstreamer." ${VOIP_DEFAULT})
    cmake_dependent_option(SCREENSHARE_X11 "Whether to enable screenshare support on X11." ON "VOIP" OFF)
    
    
    list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
    
    if(${CMAKE_VERSION} VERSION_LESS "3.14.0")
    	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()
    endif()
    
    
    # Include Qt basic functions
    include(QtCommon)
    
    
    project(nheko LANGUAGES CXX C)
    
    
    set(CPACK_PACKAGE_VERSION_MAJOR "0")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    set(CPACK_PACKAGE_VERSION_MINOR "10")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    set(CPACK_PACKAGE_VERSION_PATCH "2")
    
    set(PROJECT_VERSION_MAJOR ${CPACK_PACKAGE_VERSION_MAJOR})
    set(PROJECT_VERSION_MINOR ${CPACK_PACKAGE_VERSION_MINOR})
    set(PROJECT_VERSION_PATCH ${CPACK_PACKAGE_VERSION_PATCH})
    
    # Set PROJECT_VERSION_PATCH & PROJECT_VERSION_TWEAK to 0 if not present
    # Needed by add_project_meta.
    
    fix_project_version()
    
    # Set additional project information
    set(COMPANY "Nheko")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    set(COPYRIGHT "Copyright (c) 2022 Nheko Contributors")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    set(IDENTIFIER "io.github.nheko-reborn.nheko")
    
    if(NOT MSVC AND NOT APPLE)
    
    	set(THREADS_PREFER_PTHREAD_FLAG ON)
    	find_package(Threads REQUIRED)
    
    if (BUILD_DOCS)
    
    	find_package(Doxygen)
    
    	if (DOXYGEN_FOUND)
    		set(DOXYGEN_IN ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Doxyfile.in)
    		set(DOXYGEN_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
    
    		configure_file(${DOXYGEN_IN} ${DOXYGEN_OUT})
    
    		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)
    
    #
    ## coeurl
    #
    ## Need to repeat all libevent deps?!?
    if (USE_BUNDLED_LIBEVENT)
    
    	hunter_add_package_safe(Libevent)
    
    	find_package(Libevent CONFIG REQUIRED)
    else()
    	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()
    endif()
    
    # curl
    if (USE_BUNDLED_LIBCURL)
    
    	hunter_add_package_safe(CURL)
    
    	find_package(CURL CONFIG REQUIRED)
    else()
    	find_package(PkgConfig REQUIRED) 
    	pkg_check_modules(libcurl REQUIRED IMPORTED_TARGET libcurl)
    endif()
    
    # spdlog
    if(USE_BUNDLED_SPDLOG)
    
    	hunter_add_package_safe(spdlog)
    
    endif()
    find_package(spdlog 1.0.0 CONFIG REQUIRED)
    
    if(USE_BUNDLED_COEURL)
    	include(FetchContent)
    	FetchContent_Declare(
    		coeurl
    		GIT_REPOSITORY https://nheko.im/Nheko-Reborn/coeurl.git
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    		GIT_TAG        f989f3c54c1ca15e29c5bd6b1ce4efbcb3fd8078
    
    		)
    	FetchContent_MakeAvailable(coeurl)
    	set(COEURL_TARGET_NAME coeurl::coeurl)
    else()
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	find_package(PkgConfig)
    	pkg_check_modules(coeurl IMPORTED_TARGET coeurl>=0.1.1)
    	if (TARGET PkgConfig::coeurl)
    		set(COEURL_TARGET_NAME PkgConfig::coeurl)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    endif()
    
    if(NOT TARGET PkgConfig::coeurl)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	find_package(coeurl 0.2.1 CONFIG)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	if (TARGET coeurl::coeurl)
    
    		set(COEURL_TARGET_NAME coeurl::coeurl)
    	endif()
    endif()
    
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    if (NOT COEURL_TARGET_NAME)
    	message(ERROR "Couldn't find coeurl")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    if(USE_BUNDLED_RE2)
    	hunter_add_package(re2)
    	find_package(re2 CONFIG REQUIRED)
    else()
    	find_package(PkgConfig REQUIRED)
    	pkg_check_modules(re2 REQUIRED IMPORTED_TARGET re2)
    endif()
    
    
    
    #include(LMDB)
    if(USE_BUNDLED_LMDB)
    
    	hunter_add_package_safe(lmdb)
    
    	find_package(liblmdb CONFIG REQUIRED)
    
    
    	target_include_directories(liblmdb::lmdb INTERFACE
    		"${HUNTER_INSTALL_PREFIX}/include/lmdb")
    
    	find_package(LMDB REQUIRED)
    
    find_package(Qt5 5.15 COMPONENTS Core Widgets LinguistTools Concurrent Svg Multimedia Qml QuickControls2 QuickWidgets REQUIRED)
    
    find_package(Qt5QuickCompiler)
    
    find_package(Qt5DBus)
    
    
    if (USE_BUNDLED_QTKEYCHAIN)
    	include(FetchContent)
    	FetchContent_Declare(
    		qt5keychain
    		GIT_REPOSITORY https://github.com/frankosterfeld/qtkeychain.git
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    		GIT_TAG        v0.13.1
    
    		)
    	if (BUILD_SHARED_LIBS)
    		set(QTKEYCHAIN_STATIC OFF CACHE INTERNAL "")
    	else()
    		set(QTKEYCHAIN_STATIC ON CACHE INTERNAL "")
    	endif()
    	set(BUILD_TEST_APPLICATION OFF CACHE INTERNAL "")
    	FetchContent_MakeAvailable(qt5keychain)
    else()
    
    	find_package(Qt5Keychain REQUIRED)
    
    endif()
    
    	find_package(Qt5MacExtras REQUIRED)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	if (Qt5Widgets_VERSION VERSION_LESS 5.15.0)
    
    		message(STATUS "Qt version ${Qt5Widgets_VERSION}")
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    		message(WARNING "Minimum supported Qt5 version is 5.15!")
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    set(CMAKE_INCLUDE_CURRENT_DIR ON)
    
    	set(
    		CMAKE_CXX_FLAGS
    		"${CMAKE_CXX_FLAGS} \
    		-Wall \
    		-Wextra \
    		-pedantic \
    		-fsized-deallocation \
    		-fdiagnostics-color=always \
    		-Wunreachable-code \
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    		-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()
    
    if (MSVC)
    
    	set(
    		CMAKE_CXX_FLAGS
    		"${CMAKE_CXX_FLAGS} /bigobj"
    		)
    
    if(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES))
    
    	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}'")
    
    else(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES))
    
    	message("Build type set to '${CMAKE_BUILD_TYPE}'")
    
    endif(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES))
    
    set(SPDLOG_DEBUG_ON false)
    
    # Windows doesn't handle CMAKE_BUILD_TYPE.
    if(NOT WIN32)
    
    Joe Donofry's avatar
    Joe Donofry committed
    	if(CMAKE_BUILD_TYPE STREQUAL "Debug")
    
    		set(SPDLOG_DEBUG_ON true)
    	else()
    		set(SPDLOG_DEBUG_ON false)
    	endif()
    
    find_program(GIT git)
    if(GIT)
    
    	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()
    
    
    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}")
    
    
    cmake_host_system_information(RESULT BUILD_HOST QUERY HOSTNAME)
    
    
    include(CheckSymbolExists)
    check_symbol_exists(backtrace_symbols_fd "execinfo.h" HAVE_BACKTRACE_SYMBOLS_FD)
    
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    configure_file(cmake/nheko.h config/nheko.h)
    
    #
    # Declare source and header files.
    #
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    set(SRC_FILES
    
    	# Dialogs
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	src/dialogs/FallbackAuth.cpp
    
    	src/dialogs/FallbackAuth.h
    
    	src/dialogs/ReCaptcha.cpp
    
    	src/dialogs/ReCaptcha.h
    
    	src/emoji/EmojiModel.cpp
    
    	src/emoji/EmojiModel.h
    
    	src/emoji/Provider.cpp
    
    	src/emoji/Provider.h
    
    	src/timeline/CommunitiesModel.cpp
    
    	src/timeline/CommunitiesModel.h
    	src/timeline/DelegateChooser.cpp
    	src/timeline/DelegateChooser.h
    
    	src/timeline/EventStore.cpp
    
    	src/timeline/EventStore.h
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	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
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	src/timeline/RoomlistModel.cpp
    
    	src/timeline/RoomlistModel.h
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	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
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	src/ui/MxcAnimatedImage.cpp
    
    	src/ui/MxcAnimatedImage.h
    
    	src/ui/MxcMediaProxy.h
    
    	src/ui/NhekoCursorShape.cpp
    
    	src/ui/NhekoCursorShape.h
    
    	src/ui/NhekoDropArea.cpp
    
    	src/ui/NhekoDropArea.h
    	src/ui/NhekoEventObserver.cpp
    	src/ui/NhekoEventObserver.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/ThemeManager.cpp
    
    	src/ui/ThemeManager.h
    
    	src/ui/UIA.cpp
    
    	src/ui/UIA.h
    
    	src/ui/UserProfile.cpp
    
    	src/ui/UserProfile.h
    
    	src/voip/CallDevices.h
    
    	src/voip/CallManager.h
    
    	src/voip/WebRTCSession.cpp
    
    	src/voip/WebRTCSession.h
    
    
    	src/encryption/DeviceVerificationFlow.cpp
    
    	src/encryption/DeviceVerificationFlow.h
    
    	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.h
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	src/AliasEditModel.cpp
    	src/AliasEditModel.h
    
    	src/AvatarProvider.cpp
    
    	src/AvatarProvider.h
    
    	src/BlurhashProvider.cpp
    
    	src/BlurhashProvider.h
    
    	src/Cache.cpp
    
    	src/Cache.h
    	src/CacheCryptoStructs.h
    	src/CacheStructs.h
    	src/Cache_p.h
    
    	src/ChatPage.cpp
    
    	src/ChatPage.h
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	src/Clipboard.cpp
    
    	src/Clipboard.h
    
    	src/ColorImageProvider.cpp
    
    	src/ColorImageProvider.h
    	src/CombinedImagePackModel.cpp
    	src/CombinedImagePackModel.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/ImagePackListModel.cpp
    	src/ImagePackListModel.h
    
    Loren Burkholder's avatar
    Loren Burkholder committed
    	src/InviteesModel.cpp
    
    	src/InviteesModel.h
    
    Loren Burkholder's avatar
    Loren Burkholder committed
    	src/JdenticonProvider.cpp
    
    	src/JdenticonProvider.h
    
    	src/Logging.cpp
    
    	src/Logging.h
    
    	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.h
    
    	src/RegisterPage.cpp
    
    	src/RegisterPage.h
    	src/RoomDirectoryModel.cpp
    	src/RoomDirectoryModel.h
    	src/RoomsModel.cpp
    	src/RoomsModel.h
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	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.h
    
    	includes/jdenticoninterface.h
    
    	src/main.cpp
    	)
    
    Joe Donofry's avatar
    Joe Donofry committed
    include(FeatureSummary)
    
    
    if(USE_BUNDLED_OPENSSL)
    
    	hunter_add_package_safe(OpenSSL)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    find_package(OpenSSL 1.1.0 REQUIRED)
    
    if(USE_BUNDLED_OLM)
    	include(FetchContent)
    	FetchContent_Declare(
    		Olm
    		GIT_REPOSITORY https://gitlab.matrix.org/matrix-org/olm.git
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    		GIT_TAG        3.2.12
    
    	set(OLM_TESTS OFF CACHE INTERNAL "")
    
    	FetchContent_MakeAvailable(Olm)
    else()
    
    	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
    		)
    endif()
    if(USE_BUNDLED_SPDLOG)
    
    	hunter_add_package_safe(spdlog)
    
    find_package(spdlog 1.0.0 CONFIG REQUIRED)
    
    
    if(USE_BUNDLED_CMARK)
    	include(FetchContent)
    	FetchContent_Declare(
    		cmark
    		GIT_REPOSITORY https://github.com/commonmark/cmark.git
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    		GIT_TAG        0.30.2
    
    		CMAKE_ARGS     "CMARK_STATIC=ON CMARK_SHARED=OFF CMARK_TESTS=OFF CMARK_TESTS=OFF"
    
    		)
    	FetchContent_MakeAvailable(cmark)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    		add_library(cmark::cmark ALIAS cmark)
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    		add_library(cmark::cmark ALIAS cmark_static)
    
    	find_package(cmark REQUIRED 0.29.0)
    
    endif()
    
    if(USE_BUNDLED_JSON)
    
    	hunter_add_package_safe(nlohmann_json)
    
    Joe Donofry's avatar
    Joe Donofry committed
    find_package(nlohmann_json 3.2.0)
    set_package_properties(nlohmann_json PROPERTIES
    
    	DESCRIPTION "JSON for Modern C++, a C++11 header-only JSON class"
    	URL "https://nlohmann.github.io/json/"
    	TYPE REQUIRED
    	)
    
    if(USE_BUNDLED_LMDBXX)
    
    	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)
    
    else()
    	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)
    
    if(USE_BUNDLED_MTXCLIENT)
    	include(FetchContent)
    	FetchContent_Declare(
    		MatrixClient
    
    Loren Burkholder's avatar
    Loren Burkholder committed
                    GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git
    
    Nicolas Werner's avatar
    Nicolas Werner committed
                    GIT_TAG        79dcdbb8daad2efb06147e136702a12cd8877aba
    
    		)
    	set(BUILD_LIB_EXAMPLES OFF CACHE INTERNAL "")
    	set(BUILD_LIB_TESTS OFF CACHE INTERNAL "")
    	FetchContent_MakeAvailable(MatrixClient)
    else()
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    	find_package(MatrixClient 0.8.1 REQUIRED)
    
    if (VOIP)
    	include(FindPkgConfig)
    	pkg_check_modules(GSTREAMER REQUIRED IMPORTED_TARGET gstreamer-sdp-1.0>=1.18 gstreamer-webrtc-1.0>=1.18)
    
    	if (SCREENSHARE_X11 AND NOT WIN32 AND NOT APPLE)
    
    		pkg_check_modules(XCB REQUIRED IMPORTED_TARGET xcb xcb-ewmh)
    
    trilene's avatar
    trilene committed
    
    
    # single instance functionality
    set(QAPPLICATION_CLASS QApplication CACHE STRING "Inheritance class for SingleApplication")
    
    add_subdirectory(third_party/SingleApplication-3.3.2/)
    
    Joe Donofry's avatar
    Joe Donofry committed
    feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
    
    
    Loren Burkholder's avatar
    Loren Burkholder committed
    # this must be defined here to make the moc work properly
    if (NOT APPLE AND NOT WIN32)
    	add_compile_definitions(NHEKO_DBUS_SYS)
    endif()
    
    
    include(Translations)
    set(TRANSLATION_DEPS ${LANG_QRC} ${QRC} ${QM_SRC})
    
    	set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework Foundation -framework Cocoa -framework UserNotifications")
    
    	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 src/emoji/MacHelper.mm src/emoji/MacHelper.h)
    
    	if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.16.0")
    
    		set_source_files_properties( src/notifications/NotificationManagerProxy.h src/notifications/MacNotificationDelegate.h src/notifications/MacNotificationDelegate.mm src/notifications/ManagerMac.mm src/emoji/MacHelper.mm src/emoji/MacHelper.h PROPERTIES SKIP_PRECOMPILE_HEADERS ON)
    
    	file(DOWNLOAD
    		"https://raw.githubusercontent.com/mohabouje/WinToast/41ed1c58d5dce0ee9c01dbdeac05be45358d4f57/src/wintoastlib.cpp"
    		${PROJECT_SOURCE_DIR}/src/wintoastlib.cpp
    		EXPECTED_HASH SHA256=1A1A7CE41C1052B12946798F4A6C67CE1FAD209C967F5ED4D720B173527E2073)
    
    	file(DOWNLOAD
    		"https://raw.githubusercontent.com/mohabouje/WinToast/41ed1c58d5dce0ee9c01dbdeac05be45358d4f57/src/wintoastlib.h"
    		${PROJECT_SOURCE_DIR}/src/wintoastlib.h
    		EXPECTED_HASH SHA256=b4481023c5782733795838be22bf1a75f45d87458cd4d9a5a75f664a146eea11)
    
    	set(SRC_FILES ${SRC_FILES} src/notifications/ManagerWin.cpp src/wintoastlib.cpp src/wintoastlib.h)
    
    Loren Burkholder's avatar
    Loren Burkholder committed
    	set(SRC_FILES ${SRC_FILES}
    
            src/dbus/NhekoDBusApi.h
            src/dbus/NhekoDBusBackend.h
    
    Loren Burkholder's avatar
    Loren Burkholder committed
            src/dbus/NhekoDBusApi.cpp
            src/dbus/NhekoDBusBackend.cpp
            src/notifications/ManagerLinux.cpp
    
    	${SRC_FILES}
    	${TRANSLATION_DEPS}
    	${META_FILES_TO_INCLUDE})
    
    	set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address,undefined")
    
    if(WIN32)
    	add_executable (nheko WIN32 ${OS_BUNDLE} ${NHEKO_DEPS})
    
    	target_compile_definitions(nheko PRIVATE _WIN32_WINNT=0x0601 NOMINMAX WIN32_LEAN_AND_MEAN STRICT)
    
    else()
    	add_executable (nheko ${OS_BUNDLE} ${NHEKO_DEPS})
    
    
    	if (HAVE_BACKTRACE_SYMBOLS_FD AND NOT CMAKE_BUILD_TYPE STREQUAL "Release")
    		set_target_properties(nheko PROPERTIES ENABLE_EXPORTS ON)
    	endif()
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    set_target_properties(nheko
    	PROPERTIES
    		CMAKE_SKIP_INSTALL_RPATH TRUE
    		AUTOMOC ON)
    
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    if(APPLE)
    
    	target_link_libraries (nheko PRIVATE Qt5::MacExtras)
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    elseif(WIN32)
    
    	target_compile_definitions(nheko PRIVATE WIN32_LEAN_AND_MEAN)
    	target_link_libraries (nheko PRIVATE ${NTDLIB} Qt5::WinMain)
    
    	if(MSVC)
    		target_compile_options(nheko PUBLIC "/Zc:__cplusplus")
    	endif()
    
    Konstantinos Sideris's avatar
    Konstantinos Sideris committed
    else()
    
    	target_link_libraries (nheko PRIVATE Qt5::DBus)
    
    	if (FLATPAK)
    		target_compile_definitions(nheko PRIVATE NHEKO_FLATPAK)
    	endif()
    
    endif()
    
    Nicolas Werner's avatar
    Nicolas Werner committed
    target_include_directories(nheko PRIVATE src includes third_party/blurhash third_party/cpp-httplib-0.5.12)
    
    set(THIRD_PARTY_SRC_FILES
    	third_party/blurhash/blurhash.cpp
    	third_party/blurhash/blurhash.hpp
    	third_party/cpp-httplib-0.5.12/httplib.h
    	)
    target_sources(nheko PRIVATE ${THIRD_PARTY_SRC_FILES})
    
    # Fixup bundled keychain include dirs
    if (USE_BUNDLED_QTKEYCHAIN)
    
    	target_include_directories(nheko PRIVATE ${qt5keychain_SOURCE_DIR} ${qt5keychain_BINARY_DIR})
    
    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)
    endif()
    
    
    target_link_libraries(nheko PRIVATE
    
    	${COEURL_TARGET_NAME}
    
    	MatrixClient::MatrixClient
    	cmark::cmark
    	spdlog::spdlog
    	Qt5::Widgets
    	Qt5::Svg
    	Qt5::Concurrent
    	Qt5::Multimedia
    	Qt5::Qml
    	Qt5::QuickControls2
    	Qt5::QuickWidgets
    
    	qt5keychain
    
    	nlohmann_json::nlohmann_json
    	lmdbxx::lmdbxx
    
    	liblmdb::lmdb
    
    	SingleApplication::SingleApplication)
    
    if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.16.0")
    
    	target_precompile_headers(nheko
    		PRIVATE
    		<string>
    		<algorithm>
    		)
    
    if (TARGET PkgConfig::GSTREAMER)
    	target_link_libraries(nheko PRIVATE PkgConfig::GSTREAMER)
    	target_compile_definitions(nheko PRIVATE GSTREAMER_AVAILABLE)
    
    	if (TARGET PkgConfig::XCB)
    		target_link_libraries(nheko PRIVATE PkgConfig::XCB)
    		target_compile_definitions(nheko PRIVATE XCB_AVAILABLE)
    	endif()
    
    if(MSVC)
    	target_link_libraries(nheko PRIVATE ntdll)
    
    if(QML_DEBUGGING)
    	target_compile_definitions(nheko PRIVATE QML_DEBUGGING)
    endif()
    
    
    if(NOT MSVC AND NOT HAIKU)
    
    	if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug" OR CI_BUILD)
    		target_compile_options(nheko PRIVATE "-Werror")
    	endif()
    endif()
    
    #if(NOT MSVC)
    #	target_link_options(nheko PRIVATE "LINKER:,--gc-sections")
    #endif()
    
    tastytea's avatar
    tastytea committed
    if(MAN)
    	add_subdirectory(man)
    endif()
    
    
    	if(FLATPAK)
    		set(APPID "io.github.NhekoReborn.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")
    
    tastytea's avatar
    tastytea committed
    	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()