Browse Source

Merge branch 'pr464'

pull/470/head
Tux3 / Mlkj / !Lev.uXFMLA 11 years ago
parent
commit
1af7451c8e
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
  1. 3
      qtox.pro
  2. 3
      src/main.cpp

3
qtox.pro

@ -44,6 +44,9 @@ TRANSLATIONS = translations/de.ts \ @@ -44,6 +44,9 @@ TRANSLATIONS = translations/de.ts \
RESOURCES += res.qrc
GIT_VERSION = $$system(git rev-parse HEAD)
DEFINES += GIT_VERSION=\\\"$$GIT_VERSION\\\"
contains(JENKINS,YES) {
INCLUDEPATH += ./libs/include/
} else {

3
src/main.cpp

@ -31,6 +31,9 @@ int main(int argc, char *argv[]) @@ -31,6 +31,9 @@ int main(int argc, char *argv[])
QCoreApplication::addLibraryPath(QCoreApplication::applicationDirPath());
a.addLibraryPath("platforms");
qDebug() << "built on: " << __TIME__ << __DATE__;
qDebug() << "commit: " << GIT_VERSION << "\n";
// Install Unicode 6.1 supporting font
QFontDatabase::addApplicationFont("://DejaVuSans.ttf");

Loading…
Cancel
Save