From 39625c959be7c9d7e688fc7a1fffc442054d0a86 Mon Sep 17 00:00:00 2001 From: Brandon Date: Sun, 28 Jun 2020 22:14:31 -0700 Subject: [PATCH] Build instructions. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 91c7e28..9b695e0 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,14 @@ Converts an image into a Picross (Nonogram) Puzzle. Supports various Picross Puz |---|--------------------------------------------------------------------------------------------------------| |![RGB](https://github.com/TricksterGuy/PicrossPuzzleExporter/blob/master/screenshots/light.png)|![RBY](https://github.com/TricksterGuy/PicrossPuzzleExporter/blob/master/screenshots/painting.png) | + +## Building + +### Linux (Debian Based Systems) + 1. Install dependencies `sudo apt install cmake libprotobuf-dev libwxgtk3.0-gtk3-dev pkg-config libgtk2.0-dev protobuf-compiler` + 2. Create a build directory `mkdir build && cd build` + 3. Generate a Makefile via cmake `cmake ..` + 4. Build the program `make` + 5. Install the program `sudo make install` + +Optionally for xlsx export support [libxlsxwriter](https://libxlsxwriter.github.io/getting_started.html) can be installed and the option ENABLE_XLSX can be passed when running cmake.