diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index c57ab1d..d2fe5ca 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -20,16 +20,16 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - compiler: [g++-9, clang] + compiler: [g++-13, clang] exclude: # Only default compiler on macos-latest and ubuntu-latest - os: macos-latest - compiler: g++-9 + compiler: g++-13 - os: ubuntu-latest compiler: clang include: - os: ubuntu-latest - compiler: g++-9 + compiler: g++-13 - os: macos-latest compiler: clang diff --git a/CMakeLists.txt b/CMakeLists.txt index 9541338..36d60b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required (VERSION 3.8) project (budgetwarrier) -set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD 23) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_INSTALL_PREFIX /usr/local)