Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-10-01 16:48:55 +0300
committerHannah von Reth <vonreth@kde.org>2021-10-01 16:51:57 +0300
commit177af4db94eef3c6307615be5e2be3d96cea123a (patch)
tree7ab24c6f03d4abc7b65f634a8041b5f47d453ca4 /CMakeLists.txt
parent874ffe8ea3fc8182804546752c720e5975262567 (diff)
Enable c++17, this enables us to use std::filesystem
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d64474d2f..c92109f7d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.6)
-set(CMAKE_CXX_STANDARD 14)
+set(CMAKE_CXX_STANDARD 17)
include(VERSION.cmake)
project(client LANGUAGES CXX C VERSION ${MIRALL_VERSION_MAJOR}.${MIRALL_VERSION_MINOR}.${MIRALL_VERSION_PATCH})