Add more information on adding a plugin to the NSIS installer.

svn path=/trunk/; revision=22564
This commit is contained in:
Guy Harris 2007-08-21 17:59:08 +00:00
parent 4bf2ada77f
commit 8ed8be19f3
1 changed files with 15 additions and 3 deletions

View File

@ -194,9 +194,21 @@ AC_OUTPUT(
3.5 Changes to the installers
If you want to include your plugin in an installer you have to add lines
in the NSIS installer wireshark.nsi file, and U3 installer makefile.nmake
file.
If you want to include your plugin in an installer you have to add lines
in the NSIS installer Makefile.nmake and wireshark.nsi files, and U3
installer makefile.nmake file.
For the NSIS installer:
Add ../../plugins/xxx/xxx.dll to the list of plugins for the
PLUGINS variable in packaging/nsis/Makefile.nmake.
Add
File "..\..\plugins\xxx\xxx.dll"
to the list of "File" statements in the "Dissector Plugins"
section.
4. Development and plugins on Unix