Skip to content

Commit 36c9e86

Browse files
Fix CMake CMP0174 warnings and bump miniz to v3.1.0 (#375)
* Bump miniz dependency from v3.0.2 to v3.1.0 Co-authored-by: moonshadow565 <7480230+moonshadow565@users.noreply.github.com> * Fix CMP0174 warnings by removing empty CONFIGURE_COMMAND and BUILD_COMMAND Co-authored-by: moonshadow565 <7480230+moonshadow565@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: moonshadow565 <7480230+moonshadow565@users.noreply.github.com>
1 parent 2d422e1 commit 36c9e86

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

cslol-tools/dep/CMakeLists.txt

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ FetchContent_Declare(
88
xxhash
99
GIT_REPOSITORY https://github.com/Cyan4973/xxHash.git
1010
GIT_TAG 35b0373c697b5f160d3db26b1cbb45a0d5ba788c # v0.8.1
11-
CONFIGURE_COMMAND ""
12-
BUILD_COMMAND ""
1311
)
1412
FetchContent_GetProperties(xxhash)
1513
if(NOT xxhash_POPULATED)
@@ -25,8 +23,6 @@ FetchContent_Declare(
2523
zstd
2624
GIT_REPOSITORY https://github.com/facebook/zstd.git
2725
GIT_TAG 63779c798237346c2b245c546c40b72a5a5913fe # v1.5.5
28-
CONFIGURE_COMMAND ""
29-
BUILD_COMMAND ""
3026
)
3127
FetchContent_GetProperties(zstd)
3228
if(NOT zstd_POPULATED)
@@ -51,8 +47,6 @@ FetchContent_Declare(
5147
libdeflate
5248
GIT_REPOSITORY https://github.com/ebiggers/libdeflate.git
5349
GIT_TAG 495fee110ebb48a5eb63b75fd67e42b2955871e2 # v1.18
54-
CONFIGURE_COMMAND ""
55-
BUILD_COMMAND ""
5650
)
5751
FetchContent_GetProperties(libdeflate)
5852
if(NOT libdeflate_POPULATED)
@@ -71,7 +65,7 @@ endif()
7165
FetchContent_Declare(
7266
miniz
7367
GIT_REPOSITORY https://github.com/richgel999/miniz.git
74-
GIT_TAG d9d197c92606da7be59cee2be2fbc6830b73c480 # 3.0.2
68+
GIT_TAG 174573d60290f447c13a2b1b3405de2b96e27d6c # 3.1.0
7569
)
7670
FetchContent_GetProperties(miniz)
7771
if(NOT miniz_POPULATED)
@@ -85,8 +79,6 @@ FetchContent_Declare(
8579
fmt
8680
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
8781
GIT_TAG a33701196adfad74917046096bf5a2aa0ab0bb50 # 9.1.0
88-
CONFIGURE_COMMAND ""
89-
BUILD_COMMAND ""
9082
)
9183
FetchContent_GetProperties(fmt)
9284
if(NOT fmt_POPULATED)
@@ -101,8 +93,6 @@ FetchContent_Declare(
10193
fmtlog
10294
GIT_REPOSITORY https://github.com/MengRao/fmtlog.git
10395
GIT_TAG 5aea0764c820358ec1a842cd34cb6d494f65cfa1 # 2.2.1
104-
CONFIGURE_COMMAND ""
105-
BUILD_COMMAND ""
10696
)
10797
FetchContent_GetProperties(fmtlog)
10898
if(NOT fmtlog_POPULATED)

0 commit comments

Comments
 (0)