From 640c44f24edef4ee3062d77b5fc8366db64e85c4 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Wed, 11 Jan 2023 15:19:28 -0800 Subject: CMake: Specify Falco plugins manually. Falco plugins don't yet have a standard installation location, and even when they do we might not want to install all of them. Remove plugin detection from FindSinsp.cmake and note that you should just pass the paths to your plugins in SINSP_PLUGINS. --- plugins/epan/falco_bridge/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/epan/falco_bridge/README.md b/plugins/epan/falco_bridge/README.md index 68e350baae..7956a134f7 100644 --- a/plugins/epan/falco_bridge/README.md +++ b/plugins/epan/falco_bridge/README.md @@ -8,7 +8,15 @@ It requires [libsinsp and libscap](https://github.com/falcosecurity/libs/). 1. Download and compile [libsinsp and libscap](https://github.com/falcosecurity/libs/). You will probably want to pass `-DMINIMAL_BUILD=ON -DCREATE_TEST_TARGETS=OFF` to cmake. -1. Configure Wireshark with `cmake ... -DSINSP_INCLUDEDIR=/path/to/falcosecurity-libs -DSINSP_LIBDIR=/path/to/falcosecurity-libs/ -DSINSP_PLUGINDIR=/path/to/falcosecurity-plugins/ build ...` +1. Configure Wireshark with + +``` +cmake \ + -DSINSP_INCLUDEDIR=/path/to/falcosecurity-libs \ + -DSINSP_LIBDIR=/path/to/falcosecurity-libs/ \ + -DSINSP_PLUGINS="/path/to/plugin1;/path/to/plugin2;/path/to/plugin3" \ + [other cmake args] +``` ## Quick Start -- cgit v1.2.3