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.

In case of errors

It should build Zippo without any errors. If any errors occur, let me know. Either create an issue on GitHub or send me an email at rill.ki@yahoo.com.

Clone this wiki locally