Skip to content

coding-cpp/zippuccino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zippuccino

A simple, fast and lightweight C++ zipping library, all without any external dependencies, which allows you to understand how zipping actually works.

Installation

  1. Make sure you have the gnu g++ compiler installed on your system. You can install it by running the following command:

    sudo apt install g++ build-essential
  2. Clone the repository:

    git clone [email protected]:coding-cpp/zippuccino
    cd zippuccino
  3. Clone the submodules:

    git submodule init
    git submodule update
  4. Build the project:

    mkdir build && cd build
    cmake ..
    make
  5. Run the project to zip the project itself :)

    ./zippuccino

Example

You can find an example of how to use zippuccino in the example directory.