From 772d3b3288e13cc48e45ffce1d2b8d0aa070c111 Mon Sep 17 00:00:00 2001 From: forbes Date: Fri, 6 Feb 2026 12:42:02 -0600 Subject: [PATCH] fix(build): update CMake install paths for silo-mod repo layout The silo submodule now uses silo-mod layout where the FreeCAD workbench is at freecad/ (not pkg/freecad/). Also install the silo-client submodule directory. --- src/Mod/Create/CMakeLists.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Mod/Create/CMakeLists.txt b/src/Mod/Create/CMakeLists.txt index 7a735433d4..40aab5df9c 100644 --- a/src/Mod/Create/CMakeLists.txt +++ b/src/Mod/Create/CMakeLists.txt @@ -33,7 +33,13 @@ install( # Install Silo addon install( DIRECTORY - ${CMAKE_SOURCE_DIR}/mods/silo/pkg/freecad/ + ${CMAKE_SOURCE_DIR}/mods/silo/freecad/ DESTINATION - mods/silo/pkg/freecad + mods/silo/freecad +) +install( + DIRECTORY + ${CMAKE_SOURCE_DIR}/mods/silo/silo-client/ + DESTINATION + mods/silo/silo-client )