diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-05-09 22:33:21 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-05-09 22:33:21 +0200 |
| commit | c1e94d17e7a702ec4960bf0284a2231e6e8e8f95 (patch) | |
| tree | 556cdf8a65c2ba8b3812216ef16c5418a13fbb34 | |
| parent | 7e85875978743055d0e68032b138d972e9ed480b (diff) | |
Improve CMakeLists.txt
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
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}) |
