ceb07b7425
* store version in file * use version file in release workflow * use new version file in build workflow * ArchLinux build * setup cache for ArchLinux * add version check in release CI * edit step description * update pkgbuild to install correctly * AUR deploy * rename version file to VERSION * install all default plugins in PKGBUILD * Added emojis to build workflow * Added emojis to release workflow * separate update packages and install dependencies in two steps * fix Release CI * add md5Sums to PKGBUILD * make PKGBUILD point to the official repo + set v in tag
40 lines
945 B
CMake
40 lines
945 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
# 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}")
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
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")
|
|
|
|
# Make sure project is configured correctly
|
|
setDefaultBuiltTypeIfUnset()
|
|
detectBadClone()
|
|
|
|
# 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)
|
|
|
|
# Add unit tests
|
|
enable_testing()
|
|
add_subdirectory(tests EXCLUDE_FROM_ALL)
|
|
|
|
# Configure packaging
|
|
createPackage()
|