Skip to content

Commit 6f05528

Browse files
committed
all: Fix some compiler warnings
1 parent 4dc8898 commit 6f05528

File tree

16 files changed

+209
-297
lines changed

16 files changed

+209
-297
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# See https://www.wischik.com/lu/programmer/zip_utils.html
44

5-
cmake_minimum_required(VERSION 3.5)
5+
cmake_minimum_required(VERSION 3.10)
66
project(zip-utils LANGUAGES CXX)
77

88
# BUILD_SHARED_LIBS is a standard CMake variable, but we declare it here to make
@@ -379,10 +379,10 @@ add_subdirectory(examples/modify)
379379
if (ZIP_UTILS_OS_WIN)
380380
add_subdirectory(examples/progress)
381381
add_test(NAME zip-utils-progress COMMAND zip-utils-progress)
382-
endif (ZIP_UTILS_OS_WIN)
383382

384383
add_subdirectory(examples/simple)
385384
add_test(NAME zip-utils-simple COMMAND zip-utils-simple)
385+
endif (ZIP_UTILS_OS_WIN)
386386

387387
add_subdirectory(examples/std)
388388
add_test(NAME zip-utils-std COMMAND zip-utils-std)

0 commit comments

Comments
 (0)