1 2 3 4 5 6 7 8 9 10 11 12
#undef NDEBUG #include <cassert> #include "base-path.hpp" #include <QCoreApplication> const QString& application_base_path() { assert(qApp && "logic error"); static QString path = QCoreApplication::applicationDirPath(); return path; }