blob: 4ef3762e3f2e2f1ef5b25559361fbd799420550f (
plain)
1
2
3
4
5
6
7
8
|
#include "base-path.hpp"
#include <QCoreApplication>
const QString& application_base_path()
{
static QString const& const_path = QCoreApplication::applicationDirPath();
return const_path;
}
|