From 487dae631fc3652422aa2e68c3d837985972ac60 Mon Sep 17 00:00:00 2001 From: Archie Hilton Date: Mon, 6 May 2024 18:13:57 +0100 Subject: [PATCH] Specifically use C++20 --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73691a3..fc6dc08 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.21) project(Exponent CXX) +set(CMAKE_CXX_STANDARD 20) + add_subdirectory(glfw) add_subdirectory(src) add_subdirectory(glm) \ No newline at end of file