# minizip **Repository Path**: fafa1998/minizip ## Basic Information - **Project Name**: minizip - **Description**: Minizip. Portable zip & unzip lib - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-15 - **Last Updated**: 2021-08-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Minizip. Portable zip & unzip lib Based on the original work of [Gilles Vollant](http://www.winimage.com/zLibDll/minizip.html) ### Usage in a CMake project add_subdirectory (minizip) target_link_libraries(${PROJECT_NAME} minizip) INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/minizip) In your code you can use it like #include ### Requirement: * Zlib. The Zlib library allows to deflate compressed files and to create gzip (.gz) files. Zlib is free software and small. ### Usage of library ``` #include unzip(src, dst); ```