From 388dccfd9fb015d0ca4230465e9ff56c4868bc26 Mon Sep 17 00:00:00 2001 From: iTrooz Date: Sat, 13 Dec 2025 23:46:13 +0100 Subject: [PATCH] chore: organise cmake build flags --- CMakeLists.txt | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 81e0ec4f5..293d2d24f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,33 +1,39 @@ cmake_minimum_required(VERSION 3.25) # Options -option(IMHEX_PLUGINS_IN_SHARE "Put the plugins in share/imhex/plugins instead of lib[..]/imhex/plugins (Linux only)" OFF) +## General option(IMHEX_STRIP_RELEASE "Strip the release builds" ON ) option(IMHEX_OFFLINE_BUILD "Enable offline build" OFF) option(IMHEX_IGNORE_BAD_CLONE "Disable the bad clone prevention checks" OFF) option(IMHEX_PATTERNS_PULL_MASTER "Download latest files from master branch of the ImHex-Patterns repo" OFF) option(IMHEX_IGNORE_BAD_COMPILER "Allow compiling with an unsupported compiler" OFF) option(IMHEX_USE_GTK_FILE_PICKER "Use GTK file picker instead of xdg-desktop-portals (Linux only)" OFF) -option(IMHEX_DISABLE_STACKTRACE "Disables support for printing stack traces" OFF) option(IMHEX_BUNDLE_DOTNET "Bundle .NET runtime" ON ) option(IMHEX_ENABLE_LTO "Enables Link Time Optimizations if possible" OFF) option(IMHEX_USE_DEFAULT_BUILD_SETTINGS "Use default build settings" OFF) -option(IMHEX_STRICT_WARNINGS "Enable most available warnings and treat them as errors" ON ) option(IMHEX_BUILD_HARDENING "Enable hardening flags for build" ON ) -option(IMHEX_STATIC_LINK_PLUGINS "Statically link all plugins into the main executable" OFF) option(IMHEX_GENERATE_PACKAGE "Specify if a native package should be built. (Windows and MacOS only)" OFF) option(IMHEX_ENABLE_UNITY_BUILD "Enables building ImHex as a unity build." OFF) -option(IMHEX_GENERATE_PDBS "Enable generating PDB files in non-debug builds (Windows only)" OFF) -option(IMHEX_REPLACE_DWARF_WITH_PDB "Remove DWARF information from binaries when generating PDBS (Windows only)" OFF) -option(IMHEX_ENABLE_STD_ASSERTS "Enable debug asserts in the C++ std library. (Breaks Plugin ABI!)" OFF) -option(IMHEX_ENABLE_UNIT_TESTS "Enable building unit tests" ON ) -option(IMHEX_ENABLE_PLUGIN_TESTS "Enable building plugin tests" ON ) -option(IMHEX_ENABLE_IMGUI_TEST_ENGINE "Enable the ImGui Test Engine" OFF) option(IMHEX_ENABLE_PRECOMPILED_HEADERS "Enable precompiled headers" OFF) -option(IMHEX_COMPRESS_DEBUG_INFO "Compress debug information" ON ) option(IMHEX_ENABLE_CXX_MODULES "Enable C++20 Module compilation. Testing only!" OFF) option(IMHEX_ENABLE_CPPCHECK "Enable cppcheck static analysis" OFF) option(IMHEX_BUNDLE_PLUGIN_SDK "Enable bundling of Plugin SDK into install package" ON ) +## Testing +option(IMHEX_ENABLE_UNIT_TESTS "Enable building unit tests" ON ) +option(IMHEX_ENABLE_IMGUI_TEST_ENGINE "Enable the ImGui Test Engine" OFF) +option(IMHEX_ENABLE_STD_ASSERTS "Enable debug asserts in the C++ std library. (Breaks Plugin ABI!)" OFF) +## Debug info +option(IMHEX_COMPRESS_DEBUG_INFO "Compress debug information" ON ) +option(IMHEX_GENERATE_PDBS "Enable generating PDB files in non-debug builds (Windows only)" OFF) +option(IMHEX_REPLACE_DWARF_WITH_PDB "Remove DWARF information from binaries when generating PDBS (Windows only)" OFF) +option(IMHEX_STRICT_WARNINGS "Enable most available warnings and treat them as errors" ON ) +option(IMHEX_DISABLE_STACKTRACE "Disables support for printing stack traces" OFF) +## Plugins +option(IMHEX_PLUGINS_IN_SHARE "Put the plugins in share/imhex/plugins instead of lib[..]/imhex/plugins (Linux only)" OFF) +option(IMHEX_STATIC_LINK_PLUGINS "Statically link all plugins into the main executable" OFF) +option(IMHEX_ENABLE_PLUGIN_TESTS "Enable building plugin tests" ON ) +option(IMHEX_INCLUDE_PLUGINS "Semicolon-separated list of plugins to include in the build (empty = build all)" "" ) +option(IMHEX_EXCLUDE_PLUGINS "Semicolon-separated list of plugins to exclude from the build" "" ) set(IMHEX_BASE_FOLDER "${CMAKE_CURRENT_SOURCE_DIR}") set(CMAKE_MODULE_PATH "${IMHEX_BASE_FOLDER}/cmake/modules")