1
0
mirror of synced 2024-11-12 02:00:52 +01:00
ImHex/CMakeLists.txt

43 lines
1.1 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.16)
2021-01-22 23:27:01 +01:00
# Updating the version here will update it throughout ImHex as well
file(READ "VERSION" IMHEX_VERSION)
project(imhex VERSION ${IMHEX_VERSION})
message("Project version ${IMHEX_VERSION}")
2022-07-15 11:37:10 +02:00
set(CMAKE_CXX_STANDARD 23)
set(IMHEX_BASE_FOLDER ${CMAKE_CURRENT_SOURCE_DIR})
set(CMAKE_MODULE_PATH "${IMHEX_BASE_FOLDER}/cmake/modules")
include("${IMHEX_BASE_FOLDER}/cmake/build_helpers.cmake")
2022-07-08 14:17:22 +02:00
option(IMHEX_OFFLINE_BUILD "Enable offline build" OFF)
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
# 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
builtin
windows
)
# Add various defines
detectOS()
detectArch()
addVersionDefines()
configurePackingResources()
# Add ImHex sources
add_subdirectory(lib/libimhex)
add_subdirectory(main)
add_custom_target(imhex_all ALL DEPENDS main)
2021-01-12 16:50:15 +01:00
# Add unit tests
enable_testing()
add_subdirectory(tests EXCLUDE_FROM_ALL)
2021-09-11 14:41:18 +02:00
# Configure packaging
createPackage()