Bump minimum CMake version to 3.0

A nice, round number.
This commit is contained in:
Přemysl Eric Janouch 2020-10-26 13:01:25 +01:00
parent 4b7649211a
commit 500c83231f
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
project (uirc3 C)
cmake_minimum_required (VERSION 2.8.11)
cmake_minimum_required (VERSION 3.0)
project (uirc3 VERSION 0.9.8 LANGUAGES C)
# Options
option (WANT_READLINE "Use GNU Readline for the UI (better)" ON)
@ -13,7 +13,7 @@ if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC)
endif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC)
# Version
set (project_version "0.9.8")
set (project_version "${PROJECT_VERSION}")
# Try to append commit ID if it follows a version tag. It might be nicer if
# we could also detect dirty worktrees but that's very hard to get right.