wireshark/doc/plugins.example
João Valverde f1cf2646aa plugins.example: Fix build on Windows
Change-Id: I30798a697bc14076cc3bd9e224714a6a3567046b
Reviewed-on: https://code.wireshark.org/review/30774
Reviewed-by: João Valverde <j@v6e.pt>
2018-11-24 02:09:29 +00:00
..
CMakeLists.txt CMake: Modernize config-file package support 2018-08-25 18:07:21 +00:00
README plugins.example: Fix build on Windows 2018-11-24 02:09:29 +00:00
hello.c plugins.example: Fix build on Windows 2018-11-24 02:09:29 +00:00

README

This is an example of how to build a Wireshark plugin out-of-tree.

Note that this builds against Wireshark's *installed* version. You should of
course adapt to your own needs.

To build/install the plugin:

$ mkdir build && cd build
$ cmake ..
$ make
$ sudo make install

If your WiresharkConfig.cmake file is not in one of the standard cmake search
paths you will have to tell cmake where to find it. You can do so using
CMAKE_PREFIX_PATH, for example

$ cmake -DCMAKE_PREFIX_PATH="/opt/wireshark" ..