Lubuntu Compile Jumpstart? - wagic-qt.pro

Problems compiling the game? Ask Here
Locked
vaskoiii
Posts: 1
Joined: Sun Sep 07, 2014 5:11 am

Lubuntu Compile Jumpstart? - wagic-qt.pro

Post by vaskoiii »

Still failing at building and running wagic when I thought compiling and running would be way easier...

Please advise.

So far I have downloaded QT and installed with defaults from:
http://qt-project.org/downloads
(Lubuntu QT version didn't seem to install with the right libs)

I changed:
/usr/share/qtchooser$ cat qt5-x86_64-linux-gnu.2014-09-05.conf
/usr/lib/x86_64-linux-gnu/qt5/bin
/usr/lib/x86_64-linux-gnu
To:
john@nuke:/usr/share/qtchooser$ cat qt5-x86_64-linux-gnu.conf
/home/john/Qt/5.3/gcc_64/bin
/home/john/Qt/5.3/gcc_64/lib

I added the following to the qmake command:
QT+=opengl
QT+=multimedia

From command line I have:
$ qmake /iii/git/wagic/projects/mtg/wagic-qt.pro -r -spec linux-g++-64 CONFIG+=debug CONFIG+=declarative_debug CONFIG+=qml_debug QT+=opengl QT+=multimedia

Now I am stuck on:
$ make
from ../../../../git/wagic/projects/mtg/src/CarouselDeckView.cpp:1:
../../../../git/wagic/projects/mtg/include/ObjectAnalytics.h:82:38: error: ‘uint64_t’ has not been declared
void IncrementDynamicMemoryUsage(uint64_t inMemoryIncrease)
...
make: *** [CarouselDeckView.o] Error 1

== More Info ==

Before QT+=opengl
$ make
../../../../git/wagic/JGE/include/JTypes.h:147:20: fatal error: QtOpenGL: No such file or directory
#include <QtOpenGL>
^
compilation terminated.
make: *** [CarouselDeckView.o] Error 1

Before QT+=multimedia
$ make
../../../../git/wagic/JGE/include/JSoundSystem.h:29:24: fatal error: QMediaPlayer: No such file or directory
#include "QMediaPlayer"
^
compilation terminated.
make: *** [ActionElement.o] Error 1
Locked