aboutsummaryrefslogtreecommitdiffstats
path: root/doc/plugins.example
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2018-09-14 03:41:21 +0100
committerJoão Valverde <j@v6e.pt>2018-10-27 23:58:31 +0000
commit681c175f905d118e98c046a6e7d19032aecb36af (patch)
treee29337a0e3fd63b71a1ad7169d169939ac002941 /doc/plugins.example
parentff5d025307f8cb551c3a58ca523da662d3341c22 (diff)
Update plugins.example/README
Change-Id: Ib428859b75e1c196cf9fa81ebae4969bbce079f2 Reviewed-on: https://code.wireshark.org/review/30396 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'doc/plugins.example')
-rw-r--r--doc/plugins.example/README8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/plugins.example/README b/doc/plugins.example/README
index b20a5d12bf..0f44036a18 100644
--- a/doc/plugins.example/README
+++ b/doc/plugins.example/README
@@ -11,8 +11,8 @@ $ cmake ..
$ make
$ sudo make install
-If your wireshark.pc file is not in one of the standard pkg-config search paths
-you will have to tell pkg-config where to find it. Arguably the easiest way to
-do so is setting PKG_CONFIG_PATH in your build environment, for example:
+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
-$ export PKG_CONFIG_PATH="/usr/local/lib64/pkgconfig"
+$ cmake -DCMAKE_PREFIX_PATH="/opt/wireshark" ..