Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.35 KB

README.md

File metadata and controls

50 lines (39 loc) · 1.35 KB

AtaxxGUI

A graphical user interface for playing Ataxx between engines and humans

Compile

You need to install Git, CMake, a C++ compiler, Boost, and Qt6.

On Ubuntu you can do that like this (there will be similar packages for most Linux distros):

sudo apt install git cmake g++ libboost-dev qt6-base-dev

Linux

git clone https://github.com/tsoj/AtaxxGUI.git
cd AtaxxGUI
mkdir build
cd build
export CXX=g++
cmake .. && make -j

Windows

There are binaries for Windows available under releases.

git clone https://github.com/tsoj/AtaxxGUI.git
cd AtaxxGUI
mkdir build
cd build
cmake ..
msbuild .\AtaxxGUI.sln /p:Configuration=Release
# If you want to distribute:
windeployqt.exe ..\bin\AtaxxGUI.exe

Credits