summaryrefslogtreecommitdiffhomepage
path: root/csv
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-07-08 09:12:29 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-07-08 09:15:34 +0200
commit5cdbaa67c68e8c595ae1e1894eead76d465fe73c (patch)
tree8a7c28af407f89f92aface4bb5bf5c5061f71f26 /csv
parenta22afeb52abddd1411992e64377d96110888f325 (diff)
gui, api: plugin-support needs to remain header-only
Move "opentrack_library_path" to the gui module.
Diffstat (limited to 'csv')
-rw-r--r--csv/csv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/csv/csv.cpp b/csv/csv.cpp
index 668da442..9218bb80 100644
--- a/csv/csv.cpp
+++ b/csv/csv.cpp
@@ -10,7 +10,7 @@
*/
#include "csv.h"
-#include "opentrack/library-path.hpp"
+#include "opentrack-library-path.h"
#include <QTextDecoder>
#include <QFile>
#include <QCoreApplication>
@@ -100,7 +100,7 @@ bool CSV::getGameData(int id, unsigned char* table, QString& gamename)
QString id_str(move(QString::number(id)));
static const QString libexec_path(QStringLiteral("./") +
- QString(opentrack_library_path) +
+ QStringLiteral(OPENTRACK_LIBRARY_PATH) +
QStringLiteral("/settings/facetracknoir supported games.csv"));
QFile file(QCoreApplication::applicationDirPath() + libexec_path);