Use boost::filesystem when __cplusplus < 201703L
This commit is contained in:
parent
8839f5774a
commit
1351d90d51
1 changed files with 4 additions and 3 deletions
|
@ -23,8 +23,9 @@ MAPNIK_DISABLE_WARNING_POP
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
namespace fs = std::filesystem;
|
namespace fs = std::filesystem;
|
||||||
#else
|
#else
|
||||||
#include <experimental/filesystem>
|
//#include <experimental/filesystem>
|
||||||
namespace fs = std::experimental::filesystem;
|
#include <boost/filesystem.hpp>
|
||||||
|
namespace fs = boost::filesystem;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
BOOST_FUSION_ADAPT_STRUCT(mapnik::box2d<double>, (double, minx_)(double, miny_)(double, maxx_)(double, maxy_))
|
BOOST_FUSION_ADAPT_STRUCT(mapnik::box2d<double>, (double, minx_)(double, miny_)(double, maxx_)(double, maxy_))
|
||||||
|
@ -148,7 +149,7 @@ int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
fs::path p(vm["plugins-dir"].as<std::string>());
|
fs::path p(vm["plugins-dir"].as<std::string>());
|
||||||
p = p.parent_path() / "fonts";
|
p = p.parent_path() / "fonts";
|
||||||
mapnik::freetype_engine::register_fonts(p, true);
|
mapnik::freetype_engine::register_fonts(p.c_str(), true);
|
||||||
}
|
}
|
||||||
catch (...)
|
catch (...)
|
||||||
{}
|
{}
|
||||||
|
|
Loading…
Reference in a new issue