1
0
mirror of synced 2024-09-24 03:28:24 +02:00
ImHex/CMakeLists.txt

39 lines
892 B
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
2022-01-12 09:07:44 +01:00
set(IMHEX_VERSION "1.13.2")
project(imhex VERSION ${IMHEX_VERSION})
2021-01-22 23:27:01 +01:00
set(CMAKE_CXX_STANDARD 20)
2021-01-22 23:33:13 +01:00
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
set(IMHEX_BASE_FOLDER ${CMAKE_CURRENT_SOURCE_DIR})
2021-01-22 23:27:01 +01:00
include("${CMAKE_SOURCE_DIR}/cmake/build_helpers.cmake")
# 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(plugins/libimhex)
add_subdirectory(main)
add_custom_target(imhex ALL DEPENDS main)
2021-01-12 16:50:15 +01:00
# Add unit tests
2021-09-11 14:41:18 +02:00
enable_testing()
add_subdirectory(tests EXCLUDE_FROM_ALL)
2021-09-11 14:41:18 +02:00
# Configure packaging
createPackage()