aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/epan
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2023-01-11 15:19:28 -0800
committerGerald Combs <gerald@wireshark.org>2023-01-11 15:37:46 -0800
commit640c44f24edef4ee3062d77b5fc8366db64e85c4 (patch)
treeab773a72f49738a37be60c29f1f60b6d0209f0cd /plugins/epan
parent06ba70405875bbaff2381fa3bbd3f445f5e67438 (diff)
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.
Diffstat (limited to 'plugins/epan')
-rw-r--r--plugins/epan/falco_bridge/README.md10
1 files changed, 9 insertions, 1 deletions
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