From b29db79928d2576ded48503e9d1413261e9d8a5c Mon Sep 17 00:00:00 2001 From: sliptonic Date: Wed, 18 Mar 2026 15:15:58 -0500 Subject: [PATCH] Grbl post inadvertently dropped from cmake. Fixing --- src/Mod/CAM/CMakeLists.txt | 1 + src/Mod/CAM/Path/Post/scripts/grbl_post.py | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Mod/CAM/CMakeLists.txt b/src/Mod/CAM/CMakeLists.txt index 05ad43b30d..bbd25363e0 100644 --- a/src/Mod/CAM/CMakeLists.txt +++ b/src/Mod/CAM/CMakeLists.txt @@ -325,6 +325,7 @@ SET(PathPythonPostScripts_SRCS Path/Post/scripts/gcode_pre.py Path/Post/scripts/generic_post.py Path/Post/scripts/generic_plasma_post.py + Path/Post/scripts/grbl_post.py Path/Post/scripts/heidenhain_legacy_post.py Path/Post/scripts/linuxcnc_post.py Path/Post/scripts/linuxcnc_legacy_post.py diff --git a/src/Mod/CAM/Path/Post/scripts/grbl_post.py b/src/Mod/CAM/Path/Post/scripts/grbl_post.py index 341432653e..15171a0d01 100644 --- a/src/Mod/CAM/Path/Post/scripts/grbl_post.py +++ b/src/Mod/CAM/Path/Post/scripts/grbl_post.py @@ -54,8 +54,6 @@ Defaults = Dict[str, bool] Values = Dict[str, Any] Visible = Dict[str, bool] -POST_TYPE = "machine" - class Grbl(PostProcessor): """The Grbl post processor class."""