Download it and try it


Linux


1. Download the git clone from github.
    git clone git://github.com/napszel/CuteGammon.git
2. Install the compiler. To compile CuteGammon you need the g++ compiler and the Qt5 library SDK (with development packages). On Debian/Ubuntu you can install them with the command:
    apt-get install g++ qt5-default qttools5-dev-tools.
3. After install, you can build and compile easily because Qt comes with the qmake build tool. All you have to do is go to the CuteGammon folder, run 'qmake' then 'make' and you are ready to run the application.
    cd CuteGammon
    qmake
    make
    ./CuteGammon


MacOS


1. Download the git clone from github.
    git clone git://github.com/napszel/CuteGammon.git
2. Install the compiler. To compile CuteGammon on Mac you need to download Qt5 from www.qt.io download page. This also contains the Qt Creator development environment but you don't need that for running the application.
3. After install, you can build and compile easily the same way as on Linux, with the qmake build tool. All you have to do is go to the CuteGammon folder, run 'qmake' then 'make' and you are ready to run the application.
    cd CuteGammon
    qmake
    make
    ./CuteGammon


Windows


download the compiled exe file.