BOSSoNe0013 / track-o-bot

The friendly Hearthstone Tracker (Linux port)
https://trackobot.com
GNU Lesser General Public License v2.1
39 stars 6 forks source link

src/Autostart.cpp:122:68: error: ‘LOG’ was not declared in this scope #54

Closed EfficiencyVI closed 8 years ago

EfficiencyVI commented 8 years ago

Hi, the program does not compile at all.

g++ -c -pipe -O2 -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtCore -I. -I. -I/opt/qt56/mkspecs/linux-g++ -o Autostart.o src/Autostart.cpp src/Autostart.cpp: In member function ‘void Autostart::SetActive(bool)’: src/Autostart.cpp:122:68: error: ‘LOG’ was not declared in this scope LOG("source: %s", srcFile->fileName().toStdString().c_str());

Also I had to add QT += widgets just to get there. When I comment out these lines I get this:

g++ -c -pipe -O2 -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtCore -I. -I. -I/opt/qt56/mkspecs/linux-g++ -o Autostart.o src/Autostart.cpp g++ -c -pipe -O2 -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtCore -I. -I. -I/opt/qt56/mkspecs/linux-g++ -o Hearthstone.o src/Hearthstone.cpp In file included from src/Hearthstone.cpp:1:0: src/Hearthstone.h:22:33: error: ISO C++ forbids declaration of ‘DEFINE_SINGLETON’ with no type [-fpermissive] DEFINE_SINGLETON( Hearthstone ); ^ In file included from src/Hearthstone.cpp:21:0: src/Settings.h:9:30: error: ISO C++ forbids declaration of ‘DEFINE_SINGLETON’ with no type [-fpermissive] DEFINE_SINGLETON( Settings ); ^ src/Hearthstone.cpp:24:38: error: expected constructor, destructor, or type conversion before ‘;’ token DEFINE_SINGLETON_SCOPE( Hearthstone ); ^ src/Hearthstone.cpp:26:26: error: definition of implicitly-declared ‘Hearthstone::Hearthstone()’ Hearthstone::Hearthstone() ^ src/Hearthstone.cpp:52:27: error: definition of implicitly-declared ‘virtual Hearthstone::~Hearthstone()’ Hearthstone::~Hearthstone() { ^ src/Hearthstone.cpp: In member function ‘void Hearthstone::Update()’: src/Hearthstone.cpp:73:86: error: ‘DBG’ was not declared in this scope DBG( "HS window changed %d %d %d %d", lastLeft, lastTop, lastWidth, lastHeight ); ^ src/Hearthstone.cpp:82:37: error: ‘LOG’ was not declared in this scope LOG( "Hearthstone is running" ); ^ src/Hearthstone.cpp:85:34: error: ‘LOG’ was not declared in this scope LOG( "Hearthstone stopped" ); ^ src/Hearthstone.cpp: In member function ‘QString Hearthstone::ReadAgentAttribute(const char*) const’: src/Hearthstone.cpp:92:51: error: ‘LOG’ was not declared in this scope LOG("HS ReadAgentAttribute: %s", attributeName); ^ src/Hearthstone.cpp:113:49: error: ‘qt2cstr’ was not declared in this scope DBG( "Couldn't open %s (%d)", qt2cstr( path ), file.error() ); ^ src/Hearthstone.cpp:113:65: error: ‘DBG’ was not declared in this scope DBG( "Couldn't open %s (%d)", qt2cstr( path ), file.error() ); ^ src/Hearthstone.cpp: In member function ‘QPixmap Hearthstone::Capture(int, int, int, int, int, int)’: src/Hearthstone.cpp:142:27: error: ‘UNUSED_ARG’ was not declared in this scope UNUSED_ARG( canvasWidth ); ^ src/Hearthstone.cpp: In member function ‘void Hearthstone::EnableLogging()’: src/Hearthstone.cpp:192:45: error: ‘DBG’ was not declared in this scope DBG( "Activate module %s", moduleName ); ^ src/Hearthstone.cpp:207:33: error: ‘DBG’ was not declared in this scope DBG( "FilePrinting enabled" ); ^ src/Hearthstone.cpp:213:44: error: ‘DBG’ was not declared in this scope DBG( "Log modified. Write new version" ); ^ src/Hearthstone.cpp:216:53: error: ‘qt2cstr’ was not declared in this scope ERR( "Couldn't create file %s", qt2cstr( path ) ); ^ src/Hearthstone.cpp:216:55: error: ‘ERR’ was not declared in this scope ERR( "Couldn't create file %s", qt2cstr( path ) ); ^ src/Hearthstone.cpp: In member function ‘void Hearthstone::DisableLogging()’: src/Hearthstone.cpp:234:36: error: ‘LOG’ was not declared in this scope LOG( "Ingame log deactivated." ); ^ src/Hearthstone.cpp: In member function ‘QString Hearthstone::LogConfigPath() const’: src/Hearthstone.cpp:250:22: error: ‘Instance’ is not a member of ‘Settings’ WineBottle bottle( Settings::Instance()->WinePrefixPath() ); ^ src/Hearthstone.cpp:257:70: error: ‘LOG’ was not declared in this scope LOG( "Invalid wine prefix. Cannot determine path for log.config" ); ^ src/Hearthstone.cpp: In member function ‘QString Hearthstone::DetectHearthstonePath() const’: src/Hearthstone.cpp:285:106: error: ‘qt2cstr’ was not declared in this scope LOG( "Game folder not found (%s). You should set the path manually in the settings!", qt2cstr( path ) ); ^ src/Hearthstone.cpp:285:108: error: ‘LOG’ was not declared in this scope LOG( "Game folder not found (%s). You should set the path manually in the settings!", qt2cstr( path ) ); ^ src/Hearthstone.cpp: In member function ‘QString Hearthstone::DetectWinePrefixPath() const’: src/Hearthstone.cpp:333:56: error: ‘ERR’ was not declared in this scope ERR( "Could not determine Wine prefix directory" );

BOSSoNe0013 commented 8 years ago

Hi, i can't reproduce your problem, are you sure that your buildchain installation is ok ? widgets are already declared in the .pro file so there's no need to add it once again. Please look at the requirements in the README. Thanks

angrylinuxuser commented 8 years ago

PS.

@BOSSoNe0013 You should update readme since ~/.Hearthstone directory in no longer needed

EfficiencyVI commented 8 years ago

I installed the ppa from here https://launchpad.net/~beineri/+archive/ubuntu/opt-qt56-trusty

sudo apt-get install qt-latest source /opt/qt56/bin/qt56-env.sh qmake -project make

and get this error message:

g++ -c -pipe -O2 -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I. -I. -I/opt/qt56/include -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtCore -I. -I/opt/qt56/mkspecs/linux-g++ -o Autostart.o src/Autostart.cpp
src/Autostart.cpp:3:24: fatal error: QApplication: Datei oder Verzeichnis nicht gefunden
 #include <QApplication>
                        ^
compilation terminated.
angrylinuxuser commented 8 years ago

don't do qmake -project.

just do qmake then make on fresh git clone

EfficiencyVI commented 8 years ago

I can't do that

QMake has two modes, one mode for generating project files based on some heuristics, and the other for generating makefiles. Normally you shouldn't need to specify a mode, as makefile generation is the default mode for qmake, but you may use this to test qmake on an existing project

I get this message for qmake -makefile and qmake.

angrylinuxuser commented 8 years ago

i tested with qmake -project and i hit your error then i did qmake on fresh clone and compiled fine from there so im lost here

angrylinuxuser commented 8 years ago

Im up for 20+h now so i might be talking stupid things here but by making qmake -project u are overwriting track-o-bot.pro with generated stuff. By doing so im sure it wont build. What error do you get when you run qmake track-o-bot.pro ?

EfficiencyVI commented 8 years ago

When I clone with git qmake works. I downloaded the master file and unzipped it and that's when the errors above occure. I don't know where the difference is!?

Problem is now that I run into this:

19:20:11: Running steps for project track-o-bot...
19:20:11: Configuration unchanged, skipping qmake step.
19:20:11: Starting: "/usr/bin/make" 
/usr/bin/make -f Makefile.Debug
make[1]: Entering directory `/home/oliver/Downloads/track-o-bot'
/opt/qt56/bin/uic src/ui/MainWindow.ui -o tmp/ui_MainWindow.h
/opt/qt56/bin/uic src/ui/SettingsWidget.ui -o tmp/ui_SettingsWidget.h
/opt/qt56/bin/uic src/ui/AccountWidget.ui -o tmp/ui_AccountWidget.h
/opt/qt56/bin/uic src/ui/LogWidget.ui -o tmp/ui_LogWidget.h
/opt/qt56/bin/uic src/ui/AboutWidget.ui -o tmp/ui_AboutWidget.h
/opt/qt56/bin/uic src/ui/Overlay.ui -o tmp/ui_Overlay.h
g++ -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -x c++-header -c src/Local.h -o debug/Track-o-Bot.gch/c++
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Main.o src/Main.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Hearthstone.o src/Hearthstone.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/WebProfile.o src/WebProfile.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Window.o src/ui/Window.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/SettingsTab.o src/ui/SettingsTab.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/AccountTab.o src/ui/AccountTab.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/LogTab.o src/ui/LogTab.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/AboutTab.o src/ui/AboutTab.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Overlay.o src/ui/Overlay.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Logger.o src/Logger.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Autostart.o src/Autostart.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/HearthstoneLogWatcher.o src/HearthstoneLogWatcher.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/HearthstoneLogTracker.o src/HearthstoneLogTracker.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/HearthstoneCardDB.o src/HearthstoneCardDB.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/MLP.o src/MLP.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/RankClassifier.o src/RankClassifier.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Settings.o src/Settings.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/ResultTracker.o src/ResultTracker.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/ResultQueue.o src/ResultQueue.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Local.o src/Local.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Metadata.o src/Metadata.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/Trackobot.o src/Trackobot.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/LinuxWindowCapture.o src/LinuxWindowCapture.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/WineBottle.o src/WineBottle.cpp
/opt/qt56/bin/rcc -name linux linux.qrc -o tmp/qrc_linux.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/qrc_linux.o tmp/qrc_linux.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/ui/Window.h -o tmp/moc_Window.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_Window.o tmp/moc_Window.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/ui/SettingsTab.h -o tmp/moc_SettingsTab.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_SettingsTab.o tmp/moc_SettingsTab.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/ui/AccountTab.h -o tmp/moc_AccountTab.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_AccountTab.o tmp/moc_AccountTab.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/ui/LogTab.h -o tmp/moc_LogTab.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_LogTab.o tmp/moc_LogTab.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/ui/AboutTab.h -o tmp/moc_AboutTab.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_AboutTab.o tmp/moc_AboutTab.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/ui/Overlay.h -o tmp/moc_Overlay.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_Overlay.o tmp/moc_Overlay.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/Logger.h -o tmp/moc_Logger.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_Logger.o tmp/moc_Logger.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/WebProfile.h -o tmp/moc_WebProfile.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_WebProfile.o tmp/moc_WebProfile.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/HearthstoneLogWatcher.h -o tmp/moc_HearthstoneLogWatcher.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_HearthstoneLogWatcher.o tmp/moc_HearthstoneLogWatcher.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/HearthstoneLogTracker.h -o tmp/moc_HearthstoneLogTracker.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_HearthstoneLogTracker.o tmp/moc_HearthstoneLogTracker.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/HearthstoneLogLineHandler.h -o tmp/moc_HearthstoneLogLineHandler.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_HearthstoneLogLineHandler.o tmp/moc_HearthstoneLogLineHandler.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/HearthstoneCardDB.h -o tmp/moc_HearthstoneCardDB.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_HearthstoneCardDB.o tmp/moc_HearthstoneCardDB.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/Hearthstone.h -o tmp/moc_Hearthstone.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_Hearthstone.o tmp/moc_Hearthstone.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/Settings.h -o tmp/moc_Settings.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_Settings.o tmp/moc_Settings.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/ResultTracker.h -o tmp/moc_ResultTracker.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_ResultTracker.o tmp/moc_ResultTracker.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/ResultQueue.h -o tmp/moc_ResultQueue.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_ResultQueue.o tmp/moc_ResultQueue.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/Trackobot.h -o tmp/moc_Trackobot.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_Trackobot.o tmp/moc_Trackobot.cpp
/opt/qt56/bin/moc -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I/opt/qt56/mkspecs/linux-g++ -I/home/oliver/Downloads/track-o-bot -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -I/usr/include/c++/4.8 -I/usr/include/x86_64-linux-gnu/c++/4.8 -I/usr/include/c++/4.8/backward -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include src/LinuxWindowCapture.h -o tmp/moc_LinuxWindowCapture.cpp
g++ -c -include debug/Track-o-Bot -pipe -g -std=gnu++0x -D_REENTRANT -Wall -W -fPIC -DVERSION=\"0.8.1\" -D_DEBUG -DPLATFORM=\"linux\" -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_XML_LIB -DQT_CORE_LIB -I. -I/opt/qt56/include -I/opt/qt56/include/QtWidgets -I/opt/qt56/include/QtGui -I/opt/qt56/include/QtNetwork -I/opt/qt56/include/QtXml -I/opt/qt56/include/QtCore -Itmp -Itmp -I/opt/qt56/mkspecs/linux-g++ -o tmp/moc_LinuxWindowCapture.o tmp/moc_LinuxWindowCapture.cpp
g++ -Wl,-rpath,/opt/qt56/lib -o build/Track-o-Bot tmp/Main.o tmp/Hearthstone.o tmp/WebProfile.o tmp/Window.o tmp/SettingsTab.o tmp/AccountTab.o tmp/LogTab.o tmp/AboutTab.o tmp/Overlay.o tmp/Logger.o tmp/Autostart.o tmp/HearthstoneLogWatcher.o tmp/HearthstoneLogTracker.o tmp/HearthstoneCardDB.o tmp/MLP.o tmp/RankClassifier.o tmp/Settings.o tmp/ResultTracker.o tmp/ResultQueue.o tmp/Local.o tmp/Metadata.o tmp/Trackobot.o tmp/LinuxWindowCapture.o tmp/WineBottle.o tmp/qrc_linux.o tmp/moc_Window.o tmp/moc_SettingsTab.o tmp/moc_AccountTab.o tmp/moc_LogTab.o tmp/moc_AboutTab.o tmp/moc_Overlay.o tmp/moc_Logger.o tmp/moc_WebProfile.o tmp/moc_HearthstoneLogWatcher.o tmp/moc_HearthstoneLogTracker.o tmp/moc_HearthstoneLogLineHandler.o tmp/moc_HearthstoneCardDB.o tmp/moc_Hearthstone.o tmp/moc_Settings.o tmp/moc_ResultTracker.o tmp/moc_ResultQueue.o tmp/moc_Trackobot.o tmp/moc_LinuxWindowCapture.o   -lGLU -lXext -lXfixes -L/usr/lib/x86_64-linux-gnu/ -lX11 -L/opt/qt56/lib -lQt5Widgets -L/usr/X11R6/lib64 -L/usr/lib/x86_64-linux-gnu -lQt5Gui -lQt5Network -lQt5Xml -lQt5Core -lGL -lpthread 
make[1]: Leaving directory `/home/oliver/Downloads/track-o-bot'
tmp/Main.o:(.qtversion[qt_version_tag]+0x0): undefined reference to `qt_version_tag'
tmp/Hearthstone.o: In function `QString::toUtf8() const &':
/opt/qt56/include/QtCore/qstring.h:513: undefined reference to `QString::toUtf8_helper(QString const&)'
tmp/WebProfile.o: In function `QString::toLatin1() const &':
/opt/qt56/include/QtCore/qstring.h:509: undefined reference to `QString::toLatin1_helper(QString const&)'
tmp/WebProfile.o: In function `int qRegisterNormalizedMetaType<QList<QSslError> >(QByteArray const&, QList<QSslError>*, QtPrivate::MetaTypeDefinedHelper<QList<QSslError>, QMetaTypeId2<QList<QSslError> >::Defined&&(!QMetaTypeId2<QList<QSslError> >::IsBuiltIn)>::DefinedType)':
/opt/qt56/include/QtCore/qmetatype.h:1692: undefined reference to `QMetaType::registerNormalizedType(QByteArray const&, void (*)(void*), void* (*)(void*, void const*), int, QFlags<QMetaType::TypeFlag>, QMetaObject const*)'
tmp/WebProfile.o: In function `int qRegisterNormalizedMetaType<QNetworkReply*>(QByteArray const&, QNetworkReply**, QtPrivate::MetaTypeDefinedHelper<QNetworkReply*, QMetaTypeId2<QNetworkReply*>::Defined&&(!QMetaTypeId2<QNetworkReply*>::IsBuiltIn)>::DefinedType)':
/opt/qt56/include/QtCore/qmetatype.h:1692: undefined reference to `QMetaType::registerNormalizedType(QByteArray const&, void (*)(void*), void* (*)(void*, void const*), int, QFlags<QMetaType::TypeFlag>, QMetaObject const*)'
tmp/Window.o: In function `void QTimer::singleShot<void (Window::*)()>(int, Qt::TimerType, QtPrivate::FunctionPointer<void (Window::*)()>::Object const*, void (Window::*)())':
/opt/qt56/include/QtCore/qtimer.h:100: undefined reference to `QTimer::singleShotImpl(int, Qt::TimerType, QObject const*, QtPrivate::QSlotObjectBase*)'
tmp/Window.o: In function `int qRegisterNormalizedMetaType<QAction*>(QByteArray const&, QAction**, QtPrivate::MetaTypeDefinedHelper<QAction*, QMetaTypeId2<QAction*>::Defined&&(!QMetaTypeId2<QAction*>::IsBuiltIn)>::DefinedType)':
/opt/qt56/include/QtCore/qmetatype.h:1692: undefined reference to `QMetaType::registerNormalizedType(QByteArray const&, void (*)(void*), void* (*)(void*, void const*), int, QFlags<QMetaType::TypeFlag>, QMetaObject const*)'
tmp/LogTab.o: In function `QString::trimmed() const &':
/opt/qt56/include/QtCore/qstring.h:403: undefined reference to `QString::trimmed_helper(QString const&)'
tmp/HearthstoneLogWatcher.o: In function `QByteArray::trimmed() const &':
/opt/qt56/include/QtCore/qbytearray.h:267: undefined reference to `QByteArray::trimmed_helper(QByteArray const&)'
tmp/HearthstoneLogTracker.o: In function `singleShot<HearthstoneLogTracker::OnSceneLoaded(const QVariantMap&)::__lambda0>':
/opt/qt56/include/QtCore/qtimer.h:135: undefined reference to `QTimer::singleShotImpl(int, Qt::TimerType, QObject const*, QtPrivate::QSlotObjectBase*)'
tmp/HearthstoneLogTracker.o: In function `int qRegisterNormalizedMetaType<QList<CardHistoryItem> >(QByteArray const&, QList<CardHistoryItem>*, QtPrivate::MetaTypeDefinedHelper<QList<CardHistoryItem>, QMetaTypeId2<QList<CardHistoryItem> >::Defined&&(!QMetaTypeId2<QList<CardHistoryItem> >::IsBuiltIn)>::DefinedType)':
/opt/qt56/include/QtCore/qmetatype.h:1692: undefined reference to `QMetaType::registerNormalizedType(QByteArray const&, void (*)(void*), void* (*)(void*, void const*), int, QFlags<QMetaType::TypeFlag>, QMetaObject const*)'
tmp/ResultQueue.o: In function `QJsonValue::QJsonValue(char const*)':
/opt/qt56/include/QtCore/qjsonvalue.h:79: undefined reference to `QJsonValue::stringDataFromQStringHelper(QString const&)'
tmp/Trackobot.o: In function `QString::toLatin1() &&':
/opt/qt56/include/QtCore/qstring.h:511: undefined reference to `QString::toLatin1_helper_inplace(QString&)'
tmp/WineBottle.o: In function `WineBottle::ReadWineRegFile(QIODevice&, QMap<QString, QVariant>&)':
/home/oliver/Downloads/track-o-bot/src/WineBottle.cpp:140: undefined reference to `QDebug::~QDebug()'
/home/oliver/Downloads/track-o-bot/src/WineBottle.cpp:140: undefined reference to `QDebug::~QDebug()'
collect2: error: ld returned 1 exit status
make[1]: *** [build/Track-o-Bot] Error 1
make: *** [debug] Error 2
19:21:03: The process "/usr/bin/make" exited with code 2.
Error while building/deploying project track-o-bot (kit: Qt 5.6.0 (qt56))
When executing step 'Make'
19:21:03: Elapsed time: 00:52.
angrylinuxuser commented 8 years ago

It looks like linking issue. I see that the ppa installs to /opt/qt56 so first have you sourced /opt/qt56/bin/qt56-env.sh before running qmake and make? If no source it and try make again. If yes edit track-o-bot.pro and add -L/opt/qt56/{path to lib dir} to LIBS around 128th line and rerun make

EfficiencyVI commented 8 years ago

Weird, I sourced the environment before but I had to change this line

LIBS += -lGL -lGLU -lXext -lX11 -lXfixes -L/usr/lib/x86_64-linux-gnu/

to

LIBS += -lGL -lGLU -lXext -lX11 -lXfixes -L/opt/qt56/lib/

Thank you, it works now! :+1: