From f7b89fdbe1b86158d0b86c0b393db8bedc7e30e4 Mon Sep 17 00:00:00 2001 From: lorenz Date: Mon, 6 May 2019 11:49:47 +0200 Subject: [PATCH] don't build ship and plot by default --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7da73f070..81955e9f9a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -283,12 +283,12 @@ OPTION(BUILD_OPENSCAD "Build the FreeCAD openscad module" ON) OPTION(BUILD_PART "Build the FreeCAD part module" ON) OPTION(BUILD_PART_DESIGN "Build the FreeCAD part design module" ON) OPTION(BUILD_PATH "Build the FreeCAD path module" ON) -OPTION(BUILD_PLOT "Build the FreeCAD plot module" ON) +OPTION(BUILD_PLOT "Build the FreeCAD plot module" OFF) OPTION(BUILD_POINTS "Build the FreeCAD points module" ON) OPTION(BUILD_RAYTRACING "Build the FreeCAD ray tracing module" ON) OPTION(BUILD_REVERSEENGINEERING "Build the FreeCAD reverse engineering module" ON) OPTION(BUILD_ROBOT "Build the FreeCAD robot module" ON) -OPTION(BUILD_SHIP "Build the FreeCAD ship module" ON) +OPTION(BUILD_SHIP "Build the FreeCAD ship module" OFF) OPTION(BUILD_SHOW "Build the FreeCAD Show module (helper module for visibility automation)" ON) OPTION(BUILD_SKETCHER "Build the FreeCAD sketcher module" ON) OPTION(BUILD_SPREADSHEET "Build the FreeCAD spreadsheet module" ON)