mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-05 23:05:10 +08:00
Fixed missing includes
This commit is contained in:
parent
8481ca9610
commit
aed6eabae8
@ -1,5 +1,7 @@
|
|||||||
#include "PostProcessor.hpp"
|
#include "PostProcessor.hpp"
|
||||||
|
|
||||||
|
#include <boost/log/trivial.hpp>
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
@ -25,9 +27,10 @@ void run_post_process_scripts(const std::string &path, const PrintConfig &config
|
|||||||
{
|
{
|
||||||
if (config.post_process.values.empty())
|
if (config.post_process.values.empty())
|
||||||
return;
|
return;
|
||||||
//config.setenv_();
|
|
||||||
|
config.setenv_();
|
||||||
auto gcode_file = boost::filesystem::path(path);
|
auto gcode_file = boost::filesystem::path(path);
|
||||||
if (!boost::filesystem::exists(gcode_file))
|
if (! boost::filesystem::exists(gcode_file))
|
||||||
throw std::runtime_error(std::string("Post-processor can't find exported gcode file"));
|
throw std::runtime_error(std::string("Post-processor can't find exported gcode file"));
|
||||||
|
|
||||||
for (std::string script: config.post_process.values) {
|
for (std::string script: config.post_process.values) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user