From c1e94d17e7a702ec4960bf0284a2231e6e8e8f95 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Tue, 9 May 2023 22:33:21 +0200 Subject: [PATCH] Improve CMakeLists.txt --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5678d36..253e6a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,11 @@ cmake_minimum_required(VERSION 3.10) project(ochess VERSION 0.0.0) +# Configure CXX Standards +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) + # wxWidgets find_package(wxWidgets COMPONENTS net gl core base adv aui propgrid richtext REQUIRED) include(${wxWidgets_USE_FILE})