# minizip **Repository Path**: alexstar55/minizip ## Basic Information - **Project Name**: minizip - **Description**: 用于make domoticz - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-15 - **Last Updated**: 2020-12-19 ## 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); ```