aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
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 !!