Complete: do not build the Complete workbench because it is empty

If it is "built", it can be hidden by commenting out the last line
which adds it to the system:
`# Gui.addWorkbench(CompleteWorkbench())`
This commit is contained in:
vocx-fc
2020-09-30 19:55:21 -05:00
committed by wwmayer
parent 863c5a2700
commit f59f24fa28
2 changed files with 2 additions and 2 deletions

View File

@@ -124,7 +124,7 @@ macro(InitializeFreeCADBuildOptions)
option(BUILD_ADDONMGR "Build the FreeCAD addon manager module" ON)
option(BUILD_ARCH "Build the FreeCAD Architecture module" ON)
option(BUILD_ASSEMBLY "Build the FreeCAD Assembly module" OFF)
option(BUILD_COMPLETE "Build the FreeCAD complete module" ON)
option(BUILD_COMPLETE "Build the FreeCAD complete module" OFF)
option(BUILD_DRAFT "Build the FreeCAD draft module" ON)
option(BUILD_DRAWING "Build the FreeCAD drawing module" ON)
option(BUILD_IDF "Build the FreeCAD idf module" ON)

View File

@@ -43,4 +43,4 @@ class CompleteWorkbench(Workbench):
def GetClassName(self):
return "Gui::PythonWorkbench"
Gui.addWorkbench(CompleteWorkbench())
# Gui.addWorkbench(CompleteWorkbench())