2020-11-10 14:26:38 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2020-12-18 20:44:13 +00:00
|
|
|
|
2021-01-22 22:27:01 +00:00
|
|
|
# Updating the version here will update it throughout ImHex as well
|
2022-06-03 11:33:21 +00:00
|
|
|
set(IMHEX_VERSION "1.18.2")
|
2021-04-17 13:46:26 +00:00
|
|
|
project(imhex VERSION ${IMHEX_VERSION})
|
2020-11-10 14:26:38 +00:00
|
|
|
|
2021-01-22 22:27:01 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2022-01-10 21:01:45 +00:00
|
|
|
set(IMHEX_BASE_FOLDER ${CMAKE_CURRENT_SOURCE_DIR})
|
2022-02-08 08:32:38 +00:00
|
|
|
set(CMAKE_MODULE_PATH "${IMHEX_BASE_FOLDER}/cmake/modules")
|
|
|
|
include("${IMHEX_BASE_FOLDER}/cmake/build_helpers.cmake")
|
2020-12-29 21:50:11 +00:00
|
|
|
|
2022-01-14 23:14:12 +00:00
|
|
|
# Make sure project is configured correctly
|
|
|
|
setDefaultBuiltTypeIfUnset()
|
|
|
|
detectBadClone()
|
|
|
|
|
2021-01-22 22:27:01 +00:00
|
|
|
# List plugin names here. Project name must match folder name
|
|
|
|
set(PLUGINS
|
2022-01-14 23:14:12 +00:00
|
|
|
builtin
|
|
|
|
windows
|
|
|
|
)
|
2020-12-28 19:03:50 +00:00
|
|
|
|
2022-01-14 23:14:12 +00:00
|
|
|
# Add various defines
|
2021-01-26 23:00:20 +00:00
|
|
|
detectOS()
|
|
|
|
detectArch()
|
2022-01-14 23:14:12 +00:00
|
|
|
addVersionDefines()
|
|
|
|
configurePackingResources()
|
2021-01-26 23:00:20 +00:00
|
|
|
|
2022-01-14 23:14:12 +00:00
|
|
|
# Add ImHex sources
|
2022-01-16 13:20:52 +00:00
|
|
|
add_subdirectory(lib/libimhex)
|
2022-01-14 23:14:12 +00:00
|
|
|
add_subdirectory(main)
|
2022-02-21 12:46:35 +00:00
|
|
|
add_custom_target(imhex_all ALL DEPENDS main)
|
2021-01-12 15:50:15 +00:00
|
|
|
|
2022-01-14 23:14:12 +00:00
|
|
|
# Add unit tests
|
2022-02-27 22:25:39 +00:00
|
|
|
enable_testing()
|
2021-12-14 19:17:09 +00:00
|
|
|
add_subdirectory(tests EXCLUDE_FROM_ALL)
|
2021-09-11 12:41:18 +00:00
|
|
|
|
2022-01-14 23:14:12 +00:00
|
|
|
# Configure packaging
|
2021-02-26 12:35:19 +00:00
|
|
|
createPackage()
|