mudlet/CMakeLists.txt
Stephen Lyons 9451d4918c
Infrastructure: add Mudlet lua files to those shown by Qt Creator (#9409)
#### Brief overview of PR changes/additions
Adds a missing entry for all the external Lua files to the set of
"OTHER_FILES" so that they show up in the Qt Creator IDE. This is
useful/ important because otherwise they are not considered when
searching with the Mudlet "Project" in the IDE.

#### Motivation for adding to Mudlet
Allows some extra files to be considered when searching for details
within the Mudlet CMake project.

#### Other info (issues closed, discussion etc)
Somehow these got missed out from #8780!

Signed-off-by: Stephen Lyons <slysven@virginmedia.com>
2026-07-12 20:08:02 +00:00

278 lines
10 KiB
CMake

############################################################################
# Copyright (C) 2014 by Ahmed Charles - acharles@outlook.com #
# Copyright (C) 2015-2018, 2020, 2022, 2024-2026 by Stephen Lyons #
# - slysven@virginmedia.com #
# #
# This program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program; if not, write to the #
# Free Software Foundation, Inc., #
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
############################################################################
############################################################################
# #
# NOTICE: FreeBSD, OpenBSD and GNU/Hurd are not officially supported #
# platforms as such; the work on getting them working has been done by #
# myself, and other developers, unless they have explicitly said so, #
# are not able to address issues relating specifically to these #
# Operating Systems. Nevertheless users of these operating systems are #
# equally welcome to contribute to the development of Mudlet - bugfixes #
# and enhancements are welcome from all! #
# Stephen Lyons, February 2018, updated March 2021 & October 2022 #
# #
############################################################################
# Should be called before PROJECT.
cmake_minimum_required(VERSION 3.25.1)
if(APPLE)
# minimum supported version by Qt6
set(CMAKE_OSX_DEPLOYMENT_TARGET "12.0" CACHE STRING "")
endif()
project(mudlet)
# All the other files that we want to see in the editor but which CMake doesn't
# do anything with.
# Gather non-compiled files for IDE visibility using glob patterns
# Note: New files are picked up automatically on CMake reconfigure
file(GLOB ROOT_FILES_LIST CONFIGURE_DEPENDS
.clang-tidy
.crowdin.yml
.cursorrules
.gitignore
.gitmodules
.imgbotconfig
.DirIcon
*.md
COMMITMENT
COMPILE
COPYING
CPPLINT.cfg
dangerfile.js
asan-suppressions.txt
mudlet.desktop
mudlet.png
mudlet.svg
icon_*.png
)
file(GLOB_RECURSE OTHER_FILES_LIST CONFIGURE_DEPENDS
.github/**
.devcontainer/**
.vscode/**
.claude/**
3rdparty/discord/rpc/lib/*
CI/**
docker/**
docs/**
.clang-format
src/.gitignore
src/mudlet-lua/**
)
# It is not clear that the "COMMENT" actually shows up anywhere - so include
# a status message:
message(STATUS "Refreshing OTHER_FILES list...")
add_custom_target(OTHER_FILES
COMMENT "Refreshing OTHER_FILES list for passive file display in IDE"
SOURCES
${ROOT_FILES_LIST}
${OTHER_FILES_LIST}
)
if(CMAKE_CONFIGURATION_TYPES)
add_custom_target(
check COMMAND ${CMAKE_CTEST_COMMAND} --force-new-ctest-process
--output-on-failure --build-config "$<CONFIGURATION>")
else()
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND}
--force-new-ctest-process --output-on-failure)
endif()
enable_testing()
if(WIN32)
set(APP_TARGET mudlet.exe)
elseif(APPLE)
set(APP_TARGET Mudlet)
else()
set(APP_TARGET mudlet)
endif()
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
option(WITH_SENTRY "Enable crash reporting via Sentry" OFF)
option(SENTRY_SEND_DEBUG "Send debug files to Sentry after build" OFF)
find_package(Git REQUIRED)
# Get Git SHA1 hash
execute_process(
COMMAND ${GIT_EXECUTABLE} rev-parse --short HEAD
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_SHA1
OUTPUT_STRIP_TRAILING_WHITESPACE
)
# If a CI/CB build system provides an alternative Git SHA1 to identify the build
# use that instead - reporting which is being used:
if(DEFINED ENV{BUILD_COMMIT} AND NOT $ENV{BUILD_COMMIT} STREQUAL "")
string(TOLOWER $ENV{BUILD_COMMIT} GIT_SHA1)
message(STATUS "Git SHA1 set from environemnt: ${GIT_SHA1}")
else()
message(STATUS "Git SHA1 used: ${GIT_SHA1}")
endif()
# Set APP_VERSION
set(APP_VERSION 4.22.0)
# Set APP_BUILD based on environment variable MUDLET_VERSION_BUILD. An explicitly
# empty value must be distinguished from an unset one so release builds (CI exports
# MUDLET_VERSION_BUILD="") get a clean version with no "-dev-<sha>" suffix:
# unset (local dev build) -> "-dev-<sha>"
# defined but empty (release) -> "" (no suffix)
# defined with a value (ptb/test) -> "<value>-<sha>"
if(DEFINED ENV{MUDLET_VERSION_BUILD})
if("$ENV{MUDLET_VERSION_BUILD}" STREQUAL "")
set(BUILD_VALUE "")
else()
set(BUILD_VALUE "$ENV{MUDLET_VERSION_BUILD}-${GIT_SHA1}")
endif()
else()
set(BUILD_VALUE "-dev-${GIT_SHA1}")
endif()
# Write to app-build.txt and set APP_BUILD
file(WRITE ${CMAKE_SOURCE_DIR}/src/app-build.txt "${BUILD_VALUE}")
message(STATUS "Value written to app-build.txt file: ${BUILD_VALUE}")
set(APP_BUILD ${BUILD_VALUE} CACHE STRING "Auto-set during CMake run. Do not alter manually." FORCE)
set(LIB_MUDLET_TARGET "mudlet_core")
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
# Static analysis support - always included, but only active when configured with
# -DENABLE_STATIC_ANALYSIS=ON (see cmake/StaticAnalysis.cmake for details)
include(StaticAnalysis)
include(IncludeOptionalModule)
include_optional_module(ENVIRONMENT_VARIABLE WITH_UPDATER
OPTION_VARIABLE USE_UPDATER
READABLE_NAME "updater"
SUPPORTED_SYSTEMS "Linux"
"Windows"
"Darwin")
include_optional_module(ENVIRONMENT_VARIABLE WITH_FONTS
OPTION_VARIABLE USE_FONTS
READABLE_NAME "fonts")
include_optional_module(ENVIRONMENT_VARIABLE WITH_3DMAPPER
OPTION_VARIABLE USE_3DMAPPER
READABLE_NAME "3D mapper")
include_optional_module(ENVIRONMENT_VARIABLE WITH_SHADER_HOT_RELOAD
OPTION_VARIABLE USE_SHADER_HOT_RELOAD
READABLE_NAME "shader hot-reloading"
DEFAULT OFF)
include_optional_module(ENVIRONMENT_VARIABLE WITH_MEMORY_TRACKING
OPTION_VARIABLE USE_MEMORY_TRACKING
READABLE_NAME "memory tracking"
DEFAULT OFF)
include_optional_module(ENVIRONMENT_VARIABLE WITH_VARIABLE_SPLASH_SCREEN
OPTION_VARIABLE USE_VARIABLE_SPLASH_SCREEN
READABLE_NAME "build-type splash screen")
find_package(Qt6 6.8.2 REQUIRED)
# Find Core5Compat for third-party libraries (communi, edbee-lib) that still need it
find_package(Qt6 COMPONENTS Core5Compat REQUIRED)
find_package(Lua 5.1 EXACT)
# Set Qt version for edbee-lib
option(BUILD_WITH_QT5 "" OFF)
option(BUILD_WITH_QT6 "" ON)
include(InitGitSubmodule)
git_submodule_init(
CHECK_FILE "3rdparty/edbee-lib/CMakeLists.txt" SUBMODULE_PATH
"3rdparty/edbee-lib" READABLE_NAME "edbee-lib editor widget")
git_submodule_init(
CHECK_FILE "3rdparty/qt-tags-widget/CMakeLists.txt" SUBMODULE_PATH
"3rdparty/qt-tags-widget" READABLE_NAME "qt-tags-widget widget")
# TODO: On macOS, we need to build qtkeychain from source because Homebrew's
# qtkeychain package is built against Homebrew's Qt, which is incompatible with
# the Qt installed by jurplel/install-qt-action in CI.
# See: https://github.com/Mudlet/Mudlet/issues/8875
if(APPLE)
set(USE_OWN_QTKEYCHAIN ON)
git_submodule_init(
CHECK_FILE "3rdparty/qtkeychain/CMakeLists.txt"
SUBMODULE_PATH "3rdparty/qtkeychain"
READABLE_NAME "QtKeychain")
add_subdirectory(3rdparty/qtkeychain)
endif()
git_submodule_init(
CHECK_FILE "3rdparty/lcf/lcf-scm-1.rockspec" SUBMODULE_PATH "3rdparty/lcf"
READABLE_NAME "lua code formatter source code")
# PLACEMARKER: sample benchmarking code
# include(FetchContent)
# FetchContent_Declare(
# nanobench
# GIT_REPOSITORY https://github.com/martinus/nanobench.git
# GIT_TAG v4.3.11
# GIT_SHALLOW TRUE)
# FetchContent_MakeAvailable(nanobench)
if(APPLE)
if(USE_UPDATER)
if(NOT EXISTS "${CMAKE_HOME_DIRECTORY}/3rdparty/cocoapods/Pods/Sparkle")
message(
STATUS "Sparkle is missing, fetching it..."
)
file(DOWNLOAD "https://github.com/sparkle-project/Sparkle/releases/download/2.7.1/Sparkle-2.7.1.tar.xz" "${CMAKE_HOME_DIRECTORY}/3rdparty/cocoapods/Pods/Sparkle-2.7.1.tar.xz"
TIMEOUT 60 # seconds
TLS_VERIFY ON
)
file(ARCHIVE_EXTRACT INPUT "${CMAKE_HOME_DIRECTORY}/3rdparty/cocoapods/Pods/Sparkle-2.7.1.tar.xz"
DESTINATION "${CMAKE_HOME_DIRECTORY}/3rdparty/cocoapods/Pods/Sparkle")
file(REMOVE "${CMAKE_HOME_DIRECTORY}/3rdparty/cocoapods/Pods/Sparkle-2.7.1.tar.xz")
endif()
endif()
endif()
find_program(CCACHE_FOUND ccache)
if(CCACHE_FOUND)
set(CMAKE_C_COMPILER_LAUNCHER ccache)
set(CMAKE_CXX_COMPILER_LAUNCHER ccache)
endif(CCACHE_FOUND)
add_subdirectory(3rdparty/edbee-lib/edbee-lib)
add_subdirectory(3rdparty/communi)
add_subdirectory(3rdparty/qt-tags-widget)
add_subdirectory(translations/translated)
add_subdirectory(src)
add_subdirectory(test)
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION_RELEASE -O3)
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION_DEBUG -O0)