From 82a3a6c877886132437956d4eb2075586de9958d Mon Sep 17 00:00:00 2001 From: theadib Date: Sun, 25 Oct 2020 09:48:54 +0000 Subject: [PATCH] Add README.md --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..80806d0 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +JSON RPC plugin for CloudCompare +================================ + +This plugin executes commands/actions via RPC from a different proccess/computer +The plugin opens a TCP-server port when activated. +The RPC communication is done via Websocket http JSON transfers. + +Currently implemented commands: +- open: opens a file from filesystem +- clear: clears all clouds + + +howto build +----------- + +1. clone CloudCompare + +mkdir cc +cd cc +git clone https://github.com/CloudCompare/CloudCompare.git + +2. add this plugin as submodule in plugins + +cd CloudCompare/plugins/core/Standard +git submodule add git@gitlab.com:theadib/jsonrpcplugin.git + +3. build CloudCompare + +cd cc/CloudCompare +mkdir build +cd build +cmake .. +make -j +sudo make install +