37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#include "cmlib_private_config.hpp"
|
|
|
|
#include <myx/base/config.hpp>
|
|
|
|
#include <myx/filesystem/paths.hpp>
|
|
#include <myx/filesystem/paths_mt.hpp>
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
|
|
namespace MF = myx::filesystem;
|
|
|
|
// Переменные для защиты экземпляра класса MF::PathsMT
|
|
std::atomic< MF::PathsMT* > MF::PathsMT::mInstance;
|
|
std::mutex MF::PathsMT::mMutex;
|
|
|
|
int main( int argc, char** argv )
|
|
{
|
|
(void)argc;
|
|
(void)argv;
|
|
QCoreApplication::setApplicationName( QStringLiteral( CMLIB_PROJECT_NAME ) );
|
|
MF::PathsMT& pathsMT = MF::PathsMT::instance();
|
|
MF::Paths& paths = MF::Paths::instance();
|
|
|
|
pathsMT.init( QStringLiteral( CMLIB_PROJECT_NAME ), QStringLiteral( "conf" ) );
|
|
pathsMT.findConfigFile( QStringLiteral( "test" ) );
|
|
qDebug() << pathsMT.systemLogDirectory();
|
|
qDebug() << pathsMT.systemConfigDirectory();
|
|
|
|
paths.init( QStringLiteral( CMLIB_PROJECT_NAME ), QStringLiteral( "conf" ) );
|
|
paths.findConfigFile( QStringLiteral( "test" ) );
|
|
qDebug() << paths.systemConstDataDirectory();
|
|
qDebug() << paths.configFileName();
|
|
|
|
return( 0 );
|
|
}
|