aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2020-05-03 13:22:56 +0200
committerAnders Broman <a.broman58@gmail.com>2020-05-03 12:52:36 +0000
commit1f5c32ae73484fa5bcfb40a70d60262f581b86d0 (patch)
treeedd21ad64b1d7019536d579932b050e249c77401 /doc
parent35fa77ce96829edd22c9ca272c93fd85305f43ed (diff)
doc: update README.idl2wrs to reflect current build system
Change-Id: I35d7420ee41b520437572a0e464ad1a9998bfd30 Reviewed-on: https://code.wireshark.org/review/37068 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/README.idl2wrs13
1 files changed, 9 insertions, 4 deletions
diff --git a/doc/README.idl2wrs b/doc/README.idl2wrs
index c3ee6e3913..6337cfa8bf 100644
--- a/doc/README.idl2wrs
+++ b/doc/README.idl2wrs
@@ -93,19 +93,24 @@ steps 3 or 4 instead.
5. Copy the resulting C code to your Wireshark src directory, edit the
- following files to include the packet-test-idl.c
+ following file to include the packet-test-idl.c
cp packet-test-idl.c /dir/where/wireshark/lives/epan/dissectors/
- edit epan/dissectors/CMakeLists.txt
+ cp /dir/where/wireshark/lives/epan/dissectors/CMakeLists.txt.example \
+ /dir/where/wireshark/lives/epan/dissectors/CMakeLists.txt
+ nano /dir/where/wireshark/lives/epan/dissectors/CMakeLists.txt
-6. Run configure
- ./configure (or ./autogen.sh)
+6. Run CMake
+
+ cmake /dir/where/wireshark/lives
+
7. Compile the code
make
+
8. Good Luck !!