Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 840 Bytes

File metadata and controls

43 lines (29 loc) · 840 Bytes

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 git@github.com: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.