Require CMake 3.3.0 in all modules

This commit is contained in:
Martchus 2020-01-10 18:01:27 +01:00
parent 358a7341b0
commit e55ae3686b
3 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
cmake_minimum_required(VERSION 3.3.0 FATAL_ERROR)
# meta data
set(META_PROJECT_NAME qtutilities)
@ -10,7 +10,7 @@ set(META_APP_DESCRIPTION
"Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models")
set(META_VERSION_MAJOR 6)
set(META_VERSION_MINOR 0)
set(META_VERSION_PATCH 3)
set(META_VERSION_PATCH 4)
set(META_APP_VERSION ${META_VERSION_MAJOR}.${META_VERSION_MINOR}.${META_VERSION_PATCH})
project(${META_PROJECT_NAME})

View File

@ -1,3 +1,5 @@
cmake_minimum_required(VERSION 3.3.0 FATAL_ERROR)
# determines the JavaScript provider (either Qt Script or Qt Declarative)
if (TARGET_CONFIG_DONE)

View File

@ -1,3 +1,5 @@
cmake_minimum_required(VERSION 3.3.0 FATAL_ERROR)
# determines the web view provider (either Qt WebKit or Qt WebEngine)
if (TARGET_CONFIG_DONE)