From ec63a2324738b82bcd93af5a875e6504cd169759 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 17 Feb 2026 11:22:07 -0700 Subject: [PATCH] feat: Add sketch, line, rectangle tools and snapping --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0cca8af..f50f073 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,6 +42,10 @@ add_executable(OpenCAD src/FeatureBrowser.cpp src/ApplicationController.cpp src/Camera.cpp + src/SketchTool.cpp + src/LineTool.cpp + src/RectangleTool.cpp + src/Snapping.cpp resources.qrc )