Skip to content

Commit

Permalink
build: Updated minimum required cmake version to 3.20 (WerWolv#677)
Browse files Browse the repository at this point in the history
As per cmake.org/cmake/help/latest/prop_tgt/CXX_STANDARD.html,
`set(CMAKE_CXX_STANDARD 23)` requires minimum cmake version bump to 3.20
  • Loading branch information
vtronko authored Aug 17, 2022
1 parent 707fec0 commit 5d11fc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.16)
cmake_minimum_required(VERSION 3.20)

# Options
option(IMHEX_PLUGINS_IN_SHARE "Put the plugins in share/imhex/plugins instead of lib[..]/imhex/plugins" OFF)
Expand Down Expand Up @@ -46,4 +46,4 @@ enable_testing()
add_subdirectory(tests EXCLUDE_FROM_ALL)

# Configure packaging
createPackage()
createPackage()

0 comments on commit 5d11fc9

Please sign in to comment.