Merge branch 'master' of gitlab.2:f1x1t/myxlib

This commit is contained in:
2019-10-19 06:47:55 +03:00
28 changed files with 302 additions and 66 deletions

View File

@ -8,7 +8,7 @@ set(current_target_sources
# Путь поиска библиотек внутри проекта
link_directories(${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR})
link_directories(${CMAKE_BINARY_DIR}/src/filesystem/lib)
link_directories(${CMAKE_BINARY_DIR}/src/myx/filesystem/lib)
# Цель для создания исполняемого файла
add_executable(${current_target} ${current_target_sources})

View File

@ -1,4 +1,4 @@
#include "filesystem/paths.hpp"
#include <myx/filesystem/paths.hpp>
namespace MF = myx::filesystem;
@ -10,7 +10,7 @@ int main( int argc, char** argv )
MF::Paths paths;
paths.updatePaths();
paths.makePaths();
paths.makeDefaultDirectories();
paths.findConfigFile( "test" );
return( 0 );