2019-10-08 20:58:42 +00:00
|
|
|
#include <myx/filesystem/paths.hpp>
|
2019-10-04 09:48:12 +00:00
|
|
|
|
|
|
|
namespace MF = myx::filesystem;
|
|
|
|
|
|
|
|
|
|
|
|
int main( int argc, char** argv )
|
|
|
|
{
|
|
|
|
(void)argc;
|
|
|
|
(void)argv;
|
|
|
|
MF::Paths paths;
|
|
|
|
|
|
|
|
paths.updatePaths();
|
2019-10-09 03:00:33 +00:00
|
|
|
paths.makeDefaultDirectories();
|
2019-10-04 09:48:12 +00:00
|
|
|
paths.findConfigFile( "test" );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|