1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# if you prefer cmake
# (tested for linux only, windows probably needs small adjustments)
cd build_cmake
cmake ../src
make
# if you prefer qmake:
cd build_qmake
qmake ../src
make
# note: maybe your QT installation only provides
# qmake-xx (not qmake). That may be ok as long as
# qmake-xx -v shows something like:
# "Using Qt version 5.2.x" or higher versions
# in this case run:
# qmake-xx ../src
# make
#
# in case of having multiple QT/qmake versions installed,
# and QT5 isn't the default one, choose the QT5 one and run:
# /path/to/qt5-version-of/qmake ../src
# make
#
# Windows, QT5/MinGW
# after qmake ../src simply run:
# mingw32-make
# to install:
cp colorcode /usr/bin/
# to uninstall:
rm /usr/bin/colorcode
# If you are still using QT version 4, look
# for the latest QT 4 version of ColorCode at:
# http://colorcode.laebisch.com/download
|