feat(Tools): Automatically create directories for tools (#11540)

* .

* .
This commit is contained in:
IntelligentQuantum
2022-04-28 00:27:21 +04:30
committed by GitHub
parent b7be09e96c
commit ad8f8ee5a5
3 changed files with 14 additions and 7 deletions

View File

@@ -23,6 +23,7 @@
#include <iomanip>
#include <set>
#include <sstream>
#include <boost/filesystem.hpp>
using G3D::Vector3;
using G3D::AABox;
@@ -54,7 +55,7 @@ namespace VMAP
TileAssembler::TileAssembler(const std::string& pSrcDirName, const std::string& pDestDirName)
: iDestDir(pDestDirName), iSrcDir(pSrcDirName)
{
//mkdir(iDestDir);
boost::filesystem::create_directory(iDestDir);
//init();
}