Tested on kde Ubuntu 16.04 LTS
- Install Qt development environment
- Install openGL library (dependency of Qt)
- clone this repo
- Build inside Qt Creator
Download latest Qt package:
make the installer file executable, eg:
chmod +x qt-opensource-linux-x64-5.8.0.run
run the installer as sudo
sudo ./qt-opensource-linux-x64-5.8.0.run
If QtCreator gives an error such as "cannot find -lGL" when you try to build project, it means that the OpenGL library is not installed. This is a fundamental dependency of Qt 5.x
sudo apt-get install libgl1-mesa-dev
cd ~/wherever-you-put-your-projects
git clone https://github.com/jniemann66/ferocious.git
- Start QtCreator
- Choose 'Open File or Project' from the File menu
- Open 'ferocious.pro'
- Build the project from the Build menu
cd ferocious && path-to-qmake/qmake && make && make clean
... where "ferocious" is the path to the directory containing the ferocious source (including the ferocious.pro file for qmake)
... and path-to-qmake is the path to the directory containing qmake, which will depend on where you installed Qt and which kits you installed. For example: ~/Qt/5.10.1/gcc_64/bin