1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00

Update all package versions

This commit is contained in:
ClausKlein 2023-07-26 23:35:25 +02:00
parent 41152efc02
commit c2751d904b
5 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.14...3.22) cmake_minimum_required(VERSION 3.14...3.27)
# ---- Project ---- # ---- Project ----

View file

@ -1,7 +1,7 @@
# this script adds all subprojects to a single build to allow IDEs understand the full project # this script adds all subprojects to a single build to allow IDEs understand the full project
# structure. # structure.
cmake_minimum_required(VERSION 3.14...3.22) cmake_minimum_required(VERSION 3.14...3.27)
project(BuildAll LANGUAGES CXX) project(BuildAll LANGUAGES CXX)

View file

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.14...3.22) cmake_minimum_required(VERSION 3.14...3.27)
project(GreeterDocs) project(GreeterDocs)

View file

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.14...3.22) cmake_minimum_required(VERSION 3.14...3.27)
project(GreeterStandalone LANGUAGES CXX) project(GreeterStandalone LANGUAGES CXX)

View file

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.14...3.22) cmake_minimum_required(VERSION 3.14...3.27)
project(GreeterTests LANGUAGES CXX) project(GreeterTests LANGUAGES CXX)
@ -15,7 +15,7 @@ include(../cmake/tools.cmake)
include(../cmake/CPM.cmake) include(../cmake/CPM.cmake)
CPMAddPackage("gh:doctest/doctest@2.4.9") CPMAddPackage("gh:doctest/doctest@2.4.11")
CPMAddPackage("gh:TheLartians/Format.cmake@1.7.3") CPMAddPackage("gh:TheLartians/Format.cmake@1.7.3")
if(TEST_INSTALLED_VERSION) if(TEST_INSTALLED_VERSION)