Fixed missing includes in PostProcessor.cpp
Fixes https://github.com/prusa3d/Slic3r/issues/1679
This commit is contained in:
parent
13f0da3ace
commit
3e28905621
1 changed files with 2 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
#include "PostProcessor.hpp"
|
#include "PostProcessor.hpp"
|
||||||
|
|
||||||
|
#include <boost/algorithm/string.hpp>
|
||||||
#include <boost/log/trivial.hpp>
|
#include <boost/log/trivial.hpp>
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
|
|
||||||
|
@ -133,6 +134,7 @@ static int run_script_win32(const std::string &script, const std::string &gcode)
|
||||||
#else
|
#else
|
||||||
#include <sys/stat.h> //for getting filesystem UID/GID
|
#include <sys/stat.h> //for getting filesystem UID/GID
|
||||||
#include <unistd.h> //for getting current UID/GID
|
#include <unistd.h> //for getting current UID/GID
|
||||||
|
#include <boost/process.hpp>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
|
|
Loading…
Reference in a new issue