From 261e22fedf401161f844a56279809e277ae1b6f2 Mon Sep 17 00:00:00 2001 From: revsic Date: Mon, 18 Feb 2019 00:16:25 +0900 Subject: [PATCH] sample: Add cmake standard c++17 --- sample/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/sample/CMakeLists.txt b/sample/CMakeLists.txt index e396fb9..1400ce0 100644 --- a/sample/CMakeLists.txt +++ b/sample/CMakeLists.txt @@ -1,4 +1,5 @@ cmake_minimum_required(VERSION 3.10) project(sample) +set(CMAKE_CXX_STANDARD 17) add_executable(string_obfs string_obfs.cpp)