From db331ab9b2e5950e68b37a37482e9cede463b45a Mon Sep 17 00:00:00 2001 From: tobtoht Date: Tue, 24 May 2022 17:38:56 +0200 Subject: [PATCH] Qt6: set CXX_STANDARD --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c75833..6572ef0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,9 @@ project(feather) message(STATUS "Initiating compile using CMake ${CMAKE_VERSION}") +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + set(VERSION_MAJOR "1") set(VERSION_MINOR "0") set(VERSION_REVISION "1")