Skip to content

Commit 66a4e1f

Browse files
committed
Updated ThirdParty
1 parent 6bd160c commit 66a4e1f

8 files changed

Lines changed: 8 additions & 10 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.22)
2-
project(rexsapi VERSION 2.2.0 LANGUAGES CXX)
2+
project(rexsapi VERSION 3.0.0 LANGUAGES CXX)
33

44
include(FetchContent)
55

cmake/fetch_cli11.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
cli11
3-
URL https://github.com/CLIUtils/CLI11/archive/refs/tags/v2.5.0.tar.gz
3+
URL https://github.com/CLIUtils/CLI11/archive/refs/tags/v2.6.2.tar.gz
44
)
55

66
FetchContent_MakeAvailable(cli11)

cmake/fetch_date.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
date
3-
URL https://github.com/HowardHinnant/date/archive/refs/tags/v3.0.3.tar.gz
3+
URL https://github.com/HowardHinnant/date/archive/refs/tags/v3.0.4.tar.gz
44
)
55

66
FetchContent_GetProperties(date)

cmake/fetch_doctest.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FetchContent_Declare(
22
doctest
33
GIT_REPOSITORY https://github.com/doctest/doctest
4-
GIT_TAG v2.4.11
4+
GIT_TAG v2.4.12
55
)
66

77
FetchContent_GetProperties(doctest)

cmake/fetch_fmt.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
fmt
3-
URL https://github.com/fmtlib/fmt/archive/refs/tags/10.2.1.tar.gz
3+
URL https://github.com/fmtlib/fmt/archive/refs/tags/12.1.0.tar.gz
44
)
55

66
FetchContent_GetProperties(fmt)

cmake/fetch_miniz.cmake

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
miniz
3-
URL https://github.com/richgel999/miniz/archive/refs/tags/3.0.2.tar.gz
3+
URL https://github.com/richgel999/miniz/archive/refs/tags/3.1.1.tar.gz
44
)
55

66
FetchContent_GetProperties(miniz)
@@ -32,9 +32,6 @@ if(NOT miniz_POPULATED)
3232
string(REPLACE "#include \"${REPLACE_STRING}.h\"" "" AMAL_MINIZ_C "${AMAL_MINIZ_C}")
3333
endforeach()
3434

35-
string(REPLACE "static const mz_uint s_tdefl_num_probes[11] = { 0, 1, 6, 32, 16, 32, 128, 256, 512, 768, 1500 };" "" AMAL_MINIZ_C "${AMAL_MINIZ_C}")
36-
string(REPLACE "static const mz_uint s_tdefl_num_probes[11];" "static inline const mz_uint s_tdefl_num_probes[11] = {0, 1, 6, 32, 16, 32, 128, 256, 512, 768, 1500};" AMAL_MINIZ_C "${AMAL_MINIZ_C}")
37-
3835
string(CONCAT AMAL_MINIZ_H "#define MINIZ_EXPORT\n" "${AMAL_MINIZ_H}")
3936

4037
string(CONCAT AMAL_MINIZ_H "${AMAL_MINIZ_H}" "\n#ifndef MINIZ_HEADER_FILE_ONLY\n"

cmake/fetch_valijson.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
valijson
3-
URL https://github.com/tristanpenman/valijson/archive/refs/tags/v1.0.5.tar.gz
3+
URL https://github.com/tristanpenman/valijson/archive/refs/tags/v1.1.0.tar.gz
44
)
55

66
FetchContent_GetProperties(valijson)

tools/Cli11.hxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#include <CLI/App.hpp>
3939
#include <CLI/Config.hpp>
4040
#include <CLI/Formatter.hpp>
41+
#include <CLI/ExtraValidators.hpp>
4142

4243
#if defined(__clang__)
4344
#pragma clang diagnostic pop

0 commit comments

Comments
 (0)