2022-08-17 18:39:49 +02:00
|
|
|
cmake_minimum_required(VERSION 3.20)
|
2020-12-18 21:44:13 +01:00
|
|
|
|
2022-07-27 08:27:38 +02:00
|
|
|
# Options
|
2024-02-24 10:06:21 +01:00
|
|
|
option(IMHEX_PLUGINS_IN_SHARE "Put the plugins in share/imhex/plugins instead of lib[..]/imhex/plugins (Linux only)" OFF)
|
|
|
|
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_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)
|
2024-02-26 20:51:08 +01:00
|
|
|
option(IMHEX_ENABLE_UNIT_TESTS "Enable building unit tests" OFF)
|
2022-07-27 08:27:38 +02:00
|
|
|
|
|
|
|
# Basic compiler and cmake configurations
|
2022-07-15 11:37:10 +02:00
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
2022-10-01 11:02:59 +02:00
|
|
|
set(CMAKE_INCLUDE_DIRECTORIES_BEFORE ON)
|
2024-02-24 10:06:21 +01:00
|
|
|
set(IMHEX_BASE_FOLDER "${CMAKE_CURRENT_SOURCE_DIR}")
|
2022-02-08 09:32:38 +01:00
|
|
|
set(CMAKE_MODULE_PATH "${IMHEX_BASE_FOLDER}/cmake/modules")
|
|
|
|
include("${IMHEX_BASE_FOLDER}/cmake/build_helpers.cmake")
|
2020-12-29 22:50:11 +01:00
|
|
|
|
2022-07-27 08:45:33 +02:00
|
|
|
# Setup project
|
|
|
|
loadVersion(IMHEX_VERSION)
|
|
|
|
setVariableInParent(IMHEX_VERSION ${IMHEX_VERSION})
|
2023-07-14 21:51:18 +02:00
|
|
|
configureCMake()
|
2023-02-01 09:20:46 +01:00
|
|
|
project(imhex
|
2024-02-24 10:06:21 +01:00
|
|
|
LANGUAGES C CXX
|
|
|
|
VERSION ${IMHEX_VERSION}
|
|
|
|
DESCRIPTION "The ImHex Hex Editor"
|
|
|
|
HOMEPAGE_URL "https://imhex.werwolv.net"
|
2023-02-01 09:20:46 +01:00
|
|
|
)
|
2022-07-27 08:45:33 +02:00
|
|
|
|
2022-01-15 00:14:12 +01:00
|
|
|
# Make sure project is configured correctly
|
|
|
|
setDefaultBuiltTypeIfUnset()
|
|
|
|
detectBadClone()
|
2022-08-02 11:59:29 +02:00
|
|
|
verifyCompiler()
|
2022-01-15 00:14:12 +01:00
|
|
|
|
2023-12-23 21:09:41 +01:00
|
|
|
detectBundledPlugins()
|
2020-12-28 20:03:50 +01:00
|
|
|
|
2022-01-15 00:14:12 +01:00
|
|
|
# Add various defines
|
2021-01-27 00:00:20 +01:00
|
|
|
detectOS()
|
2023-05-05 22:03:45 +02:00
|
|
|
addDefines()
|
2024-01-04 17:55:53 +01:00
|
|
|
|
|
|
|
# Configure packaging and install targets
|
2022-01-15 00:14:12 +01:00
|
|
|
configurePackingResources()
|
2022-10-14 15:35:45 +02:00
|
|
|
setUninstallTarget()
|
2023-01-04 12:34:38 +01:00
|
|
|
addBundledLibraries()
|
2021-01-27 00:00:20 +01:00
|
|
|
|
2022-01-15 00:14:12 +01:00
|
|
|
# Add ImHex sources
|
2023-09-27 15:13:58 +02:00
|
|
|
add_custom_target(imhex_all ALL)
|
|
|
|
|
2022-01-16 14:20:52 +01:00
|
|
|
add_subdirectory(lib/libimhex)
|
2022-01-15 00:14:12 +01:00
|
|
|
add_subdirectory(main)
|
2021-01-12 16:50:15 +01:00
|
|
|
|
2022-01-15 00:14:12 +01:00
|
|
|
# Add unit tests
|
2024-02-26 20:51:08 +01:00
|
|
|
if (IMHEX_ENABLE_UNIT_TESTS)
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(tests EXCLUDE_FROM_ALL)
|
|
|
|
endif ()
|
2021-09-11 14:41:18 +02:00
|
|
|
|
2024-01-04 17:55:53 +01:00
|
|
|
# Configure more resources that will be added to the install package
|
2022-08-17 18:39:49 +02:00
|
|
|
createPackage()
|
2023-06-20 11:55:56 +02:00
|
|
|
generatePDBs()
|
2023-12-22 23:39:38 +01:00
|
|
|
generateSDKDirectory()
|