From 80b35263db7a6c28dc9da24c1dd9142e178cf407 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 22 Sep 2019 16:31:29 +0200 Subject: [PATCH] Removed the explicit standard from the cmake This should allow consuming project to choose their own standard level freely --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a9c5c553..4db6e3f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(sfizz VERSION 1.0.0 LANGUAGES CXX) -set(CMAKE_CXX_STANDARD 14) +# set(CMAKE_CXX_STANDARD 14) # Enable LTO set(CMAKE_POLICY_DEFAULT_CMP0069 NEW) # To override the policy in abseil and benchmark