Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1003 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 1003 Bytes

nin10kit

#Compiling You can run sudo ./setup.sh which does the tasks in the list below.

  1. Ensure you have a C++ compiler (sudo apt-get install build-essential)
  2. Install dependency wxWidgets 3.0 (sudo apt-get install libwxgtk3.0-dev)
  3. Install dependency Magick++ (sudo apt-get install libmagick++-dev libmagickcore-dev libmagickwand-dev)
  4. Build the program (make)
  5. Install the program (sudo make install)

#Compiling with CMake (Advanced)

To compile this program you will need the following things installed

  1. Cmake (sudo apt-get install (cmake-qt-gui)
  2. wxWidgets 3.0 (sudo apt-get install libwxgtk3.0-dev)
  3. ImageMagick (sudo apt-get install libmagick++-dev libmagickcore-dev libmagickwand-dev)

To set up the build environment run cmake-gui

Where is the source code should be set to this directory containing CMakelists.txt

Where to build the binaries can be set to any directory.

Hit Configure and choose which setup you want

Hit Generate and you should be good to go.