Поиск стандартных каталогов

This commit is contained in:
2019-10-04 12:48:12 +03:00
parent 912e733258
commit 70a5655461
12 changed files with 1207 additions and 10 deletions

View File

@ -0,0 +1,17 @@
#include "filesystem/paths.hpp"
namespace MF = myx::filesystem;
int main( int argc, char** argv )
{
(void)argc;
(void)argv;
MF::Paths paths;
paths.updatePaths();
paths.makePaths();
paths.findConfigFile( "test" );
return( 0 );
}