2020-11-10 15:26:38 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2020-12-18 21:44:13 +01:00
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
# Updating the version here will update it throughout ImHex as well
|
2022-07-04 21:40:22 +02:00
|
|
|
file(READ "VERSION" IMHEX_VERSION)
|
2021-04-17 15:46:26 +02:00
|
|
|
project(imhex VERSION ${IMHEX_VERSION})
|
2022-07-04 21:40:22 +02:00
|
|
|
message("Project version ${IMHEX_VERSION}")
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2022-07-15 11:37:10 +02:00
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
2022-01-10 22:01:45 +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-08 14:17:22 +02:00
|
|
|
option(IMHEX_OFFLINE_BUILD "Enable offline build" OFF)
|
2022-07-18 20:02:12 +02:00
|
|
|
option(IMHEX_PATTERNS_PULL_MASTER "Download latest files from master branch of the ImHex-Patterns repo" OFF)
|
2022-07-08 14:17:22 +02:00
|
|
|
|
2022-01-15 00:14:12 +01:00
|
|
|
# Make sure project is configured correctly
|
|
|
|
setDefaultBuiltTypeIfUnset()
|
|
|
|
detectBadClone()
|
|
|
|
|
2021-01-22 23:27:01 +01:00
|
|
|
# List plugin names here. Project name must match folder name
|
|
|
|
set(PLUGINS
|
2022-01-15 00:14:12 +01:00
|
|
|
builtin
|
|
|
|
windows
|
|
|
|
)
|
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()
|
|
|
|
detectArch()
|
2022-01-15 00:14:12 +01:00
|
|
|
addVersionDefines()
|
|
|
|
configurePackingResources()
|
2021-01-27 00:00:20 +01:00
|
|
|
|
2022-01-15 00:14:12 +01:00
|
|
|
# Add ImHex sources
|
2022-01-16 14:20:52 +01:00
|
|
|
add_subdirectory(lib/libimhex)
|
2022-01-15 00:14:12 +01:00
|
|
|
add_subdirectory(main)
|
2022-02-21 13:46:35 +01:00
|
|
|
add_custom_target(imhex_all ALL DEPENDS main)
|
2021-01-12 16:50:15 +01:00
|
|
|
|
2022-01-15 00:14:12 +01:00
|
|
|
# Add unit tests
|
2022-02-27 23:25:39 +01:00
|
|
|
enable_testing()
|
2021-12-14 20:17:09 +01:00
|
|
|
add_subdirectory(tests EXCLUDE_FROM_ALL)
|
2021-09-11 14:41:18 +02:00
|
|
|
|
2022-01-15 00:14:12 +01:00
|
|
|
# Configure packaging
|
2021-02-26 13:35:19 +01:00
|
|
|
createPackage()
|