Update CMakeLists to use C++ 20

This commit is contained in:
Jordon Brooks 2024-04-07 01:05:36 +01:00
parent a47ac5fcaf
commit 5b34e9de0f
Signed by: jordon
GPG key ID: DBD9758CD53E786A
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
project(HarmonyLinkTest)
# Specify the C++ standard
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True)
# Automatically add all .cpp and .h/.hpp files in the src directory