From 34f976da7e41527a01b83d6712eccae43f035f2d Mon Sep 17 00:00:00 2001 From: Daniel Girardeau-Montaut Date: Sat, 31 Oct 2020 19:15:52 +0100 Subject: [PATCH] Plugins should be OFF by default! --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 18d7b62..41ab609 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # CloudCompare Json RPC plugin based on example for standard plugins # Add an option to CMake to control whether we build this plugin or not -option( PLUGIN_STANDARD_QJSONRPC "Install Json RPC plugin" ON ) +option( PLUGIN_STANDARD_QJSONRPC "Install Json RPC plugin" OFF ) if ( PLUGIN_STANDARD_QJSONRPC ) project( QJSON_RPC_PLUGIN )