Automate Deps Building & Build On Windows

This commit is contained in:
Dark98
2026-01-08 22:55:56 +00:00
parent 12b370ce30
commit 76996225df
9 changed files with 563 additions and 18 deletions
+5 -5
View File
@@ -1563,13 +1563,13 @@ void GCodeGenerator::process_layers(
[&output_stream](std::string s) { output_stream.write(s); }
);
tbb::filter<void, LayerResult> pipeline_to_layerresult = smooth_path_interpolator & generator;
auto pipeline_to_layerresult = smooth_path_interpolator & generator;
if (m_spiral_vase)
pipeline_to_layerresult = pipeline_to_layerresult & spiral_vase;
if (m_pressure_equalizer)
pipeline_to_layerresult = pipeline_to_layerresult & pressure_equalizer;
tbb::filter<LayerResult, std::string> pipeline_to_string = cooling;
auto pipeline_to_string = cooling;
if (m_find_replace)
pipeline_to_string = pipeline_to_string & find_replace;
@@ -1656,13 +1656,13 @@ void GCodeGenerator::process_layers(
[&output_stream](std::string s) { output_stream.write(s); }
);
tbb::filter<void, LayerResult> pipeline_to_layerresult = smooth_path_interpolator & generator;
auto pipeline_to_layerresult = smooth_path_interpolator & generator;
if (m_spiral_vase)
pipeline_to_layerresult = pipeline_to_layerresult & spiral_vase;
if (m_pressure_equalizer)
pipeline_to_layerresult = pipeline_to_layerresult & pressure_equalizer;
tbb::filter<LayerResult, std::string> pipeline_to_string = cooling;
auto pipeline_to_string = cooling;
if (m_find_replace)
pipeline_to_string = pipeline_to_string & find_replace;
@@ -3889,4 +3889,4 @@ Point GCodeGenerator::gcode_to_point(const Vec2d &point) const
return scaled<coord_t>(pt);
}
} // namespace Slic3r
} // namespace Slic3r
@@ -21,6 +21,9 @@
#include "BRepBuilderAPI_Transform.hxx"
#include "TopExp_Explorer.hxx"
#include "BRep_Tool.hxx"
#include "NCollection_Sequence.hxx"
using TDF_LabelSequence = NCollection_Sequence<TDF_Label>;
const double STEP_TRANS_CHORD_ERROR = 0.005;
const double STEP_TRANS_ANGLE_RES = 1;
@@ -198,4 +201,4 @@ try {
return true;
}
}; // namespace Slic3r
}; // namespace Slic3r
@@ -1,6 +1,7 @@
#include <android/log.h>
#include <jni.h>
#include <thread>
#include "libslic3r/libslic3r.h"
#include "libslic3r/Config.hpp"
#include "libslic3r/Model.hpp"