Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/fgarcia0x0/huffPP
Browse files Browse the repository at this point in the history
  • Loading branch information
fgarcia0x0 committed May 5, 2021
2 parents 5893b71 + 5765075 commit d7423be
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
# huffPP
The huffPP (Huffman Coding Plus Plus) is a utility tool written in C++ 20 to compact and unzip files using the huffman coding algorithm.

## System Requirements
- compiler that support at least C++ 20
- cmake
- ninja

## How to Compile
**Enter in your terminal:**

```sh
cmake -S . -B build -GNinja -DCMAKE_BUILD_TYPE=Debug|Release
```
**Go to the build folder, then:**
```sh
cmake --build . -- -j 4
```

0 comments on commit d7423be

Please sign in to comment.