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>
This commit is contained in:
Jaap Keuter 2020-05-03 13:22:56 +02:00 committed by Anders Broman
parent 35fa77ce96
commit 1f5c32ae73
1 changed files with 9 additions and 4 deletions

View File

@ -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 !!