myxlib/examples/filesystem/01_minimal/minimal.cpp

18 lines
244 B
C++
Raw Normal View History

#include <myx/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 );
}