Skip to content

Developer hints

Danil Maksimov edited this page Mar 7, 2017 · 2 revisions

Useful hints that everyone need to know to maintain this repository

How to create .gif screenshot on Linux?

Create a few screenshots with your favorite tool and resize it (imagemagick):

mogrify -resize 640x480 *.png

Next make gif from all images:

convert -delay 50 -loop 0 *.png screenshot.gif

Necessary Qt exports to run application (repasted)

export QT_PLUGIN_PATH=$QT_PATH/5.7/gcc_64/plugins/

export LD_LIBRARY_PATH=$QT_PATH/5.7/gcc_64/lib/

export QTDIR=$QT_PATH/5.7/gcc_64