aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2018-01-26 13:46:16 +0100
committerChristian Stenger <christian.stenger@qt.io>2018-01-29 10:54:10 +0000
commit2e8527c7e578f75ad8b9967f47cee771e3609d10 (patch)
treec9df8e1fe90af1ab0d005f0f1355673e62a17a04 /share
parentd3b11926d3d3d0c7062b59de22dcd842c3f539bf (diff)
Wizards: Fix QtQuick - Empty wizard for cmake
cmake does not automatically set the C++ standard to C++-11 when using Qt5.6. Explicitly set it to have a compiling template. Task-number: QTCREATORBUG-19670 Change-Id: Ibba1f58951f96c4834985bff2298d606e9aa56bc Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/templates/wizards/projects/qtquickapplication/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/share/qtcreator/templates/wizards/projects/qtquickapplication/CMakeLists.txt b/share/qtcreator/templates/wizards/projects/qtquickapplication/CMakeLists.txt
index 1e36df0c284..07c1f586086 100644
--- a/share/qtcreator/templates/wizards/projects/qtquickapplication/CMakeLists.txt
+++ b/share/qtcreator/templates/wizards/projects/qtquickapplication/CMakeLists.txt
@@ -1,10 +1,12 @@
-cmake_minimum_required(VERSION 2.8.12)
+cmake_minimum_required(VERSION 3.1)
project(%{ProjectName} LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
+set(CMAKE_CXX_STANDARD 11)
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(Qt5 COMPONENTS Core Quick REQUIRED)