#Compiling You can run sudo ./setup.sh which does the tasks in the list below.
- Ensure you have a C++ compiler (sudo apt-get install build-essential)
- Install dependency wxWidgets 3.0 (sudo apt-get install libwxgtk3.0-dev)
- Install dependency Magick++ (sudo apt-get install libmagick++-dev libmagickcore-dev libmagickwand-dev)
- Build the program (make)
- Install the program (sudo make install)
#Compiling with CMake (Advanced)
To compile this program you will need the following things installed
- Cmake (sudo apt-get install (cmake-qt-gui)
- wxWidgets 3.0 (sudo apt-get install libwxgtk3.0-dev)
- 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.