This is an automated email from the ASF dual-hosted git repository.
pnoltes pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/celix.git.
from 2430b07 Merge pull request #359 from
apache/feature/add_find_dep_to_cmake_config
add 409a828 Adds zip support to the celix utils library.
add 3d4614f Fixes the extra zip data test (including handling zip files
linked against an executable)
add e8afdfe Updates used file and dir in the utils test so that it can be
used in mac and linux
add 7a00b9c Removes incorrect cmake mark_as_advanced usage.
add 292aa9b Fixes some copy/paste errors and update documentation for
libzip
add 367066a Merge branch 'master' into feature/utils_zip_extract
add d9e562b Adds libzip to CI config
new 2b91173 Merge pull request #325 from apache/feature/utils_zip_extract
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/coverage.yml | 1 +
.github/workflows/coverity-scan.yml | 3 +-
.github/workflows/macos-nightly.yml | 2 +-
.github/workflows/macos.yml | 2 +-
.github/workflows/ubuntu-nightly.yml | 3 +-
.github/workflows/ubuntu.yml | 3 +-
cmake/Modules/FindLIBZIP.cmake | 49 +++++
documents/building/README.md | 13 +-
libs/utils/CMakeLists.txt | 4 +
libs/utils/gtest/CMakeLists.txt | 33 ++++
libs/utils/gtest/src/FileUtilsTestSuite.cc | 186 +++++++++++++++++++
libs/utils/include/celix_file_utils.h | 88 +++++++++
libs/utils/src/celix_file_utils.c | 280 +++++++++++++++++++++++++++++
13 files changed, 657 insertions(+), 10 deletions(-)
create mode 100644 cmake/Modules/FindLIBZIP.cmake
create mode 100644 libs/utils/gtest/src/FileUtilsTestSuite.cc
create mode 100644 libs/utils/include/celix_file_utils.h
create mode 100644 libs/utils/src/celix_file_utils.c