Skip to content

Building the Zippo Utility

Ki Rill edited this page Apr 14, 2021 · 5 revisions

To build Zippo, the following must be installed on your system:

  • DMD compiler (or gdc, ldc)
  • make build automation tool (optional)

Then

git clone https://github.com/rillki/zippo
cd zippo

Building using make

Just type:

make

If you are using a different compiler, replace dmd in Makefile with your compiler.

Building using DMD

dmd -of=zippo source/*

Replace dmd with the D compiler you have installed on your system. It will produce an executable called zippo, add it to your PATH on your system.

Clone this wiki locally