aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDavid Perry <boolean263@protonmail.com>2023-01-27 10:41:07 -0500
committerJohn Thacker <johnthacker@gmail.com>2023-02-06 14:32:55 +0000
commit9b797e97a2107cd0d5364634d517390e7d6910af (patch)
treeb35209f8aebceb3de9a02fb4a5613027308bf2e4 /doc
parentc331e17bea1c7e6d379827eee5f3c2c11f9136d8 (diff)
generate-dissector.py: allow creating plugin
Tweak the script used for creating a new skeleton dissector, to allow it to create the dissector in `plugins/epan/PROTOSHORTNAME` instead of in `epan/dissectors`. Handles modifying the appropriate CMake file in the appropriate way, and generates the plugin's `CMakeLists.txt` if needed.
Diffstat (limited to 'doc')
-rw-r--r--doc/CMakeLists-PROTOABBREV.txt71
1 files changed, 71 insertions, 0 deletions
diff --git a/doc/CMakeLists-PROTOABBREV.txt b/doc/CMakeLists-PROTOABBREV.txt
new file mode 100644
index 0000000000..f8a62b9eda
--- /dev/null
+++ b/doc/CMakeLists-PROTOABBREV.txt
@@ -0,0 +1,71 @@
+# CMakeLists.txt
+#
+# Wireshark - Network traffic analyzer
+# Copyright YEARS, YOUR_NAME <YOUR_EMAIL_ADDRESS>
+#
+# SPDX-License-Identifier: LICENSE
+#
+
+include(WiresharkPlugin)
+
+# Plugin name and version info (major minor micro extra)
+set_module_info(PROTOABBREV 0 0 1 0)
+
+set(DISSECTOR_SRC
+ # Source files that directly dissect data
+ packet-PROTOABBREV.c
+)
+
+set(DISSECTOR_SUPPORT_SRC
+ # Source files that provide additional routines
+)
+
+set(PLUGIN_FILES
+ plugin.c
+ ${DISSECTOR_SRC}
+ ${DISSECTOR_SUPPORT_SRC}
+)
+
+set_source_files_properties(
+ ${PLUGIN_FILES}
+ PROPERTIES
+ COMPILE_FLAGS "${WERROR_COMMON_FLAGS}"
+)
+
+register_plugin_files(plugin.c
+ plugin
+ ${DISSECTOR_SRC}
+ ${DISSECTOR_SUPPORT_SRC}
+)
+
+add_wireshark_plugin_library(PROTOABBREV epan)
+
+target_link_libraries(PROTOABBREV epan)
+
+install_plugin(PROTOABBREV epan)
+
+file(GLOB DISSECTOR_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*.h")
+CHECKAPI(
+ NAME
+ PROTOABBREV
+ SWITCHES
+ --group dissectors-prohibited
+ --group dissectors-restricted
+ SOURCES
+ ${DISSECTOR_SRC}
+ ${DISSECTOR_SUPPORT_SRC}
+ ${DISSECTOR_HEADERS}
+)
+
+#
+# Editor modelines - https://www.wireshark.org/tools/modelines.html
+#
+# Local variables:
+# c-basic-offset: 8
+# tab-width: 8
+# indent-tabs-mode: t
+# End:
+#
+# vi: set shiftwidth=8 tabstop=8 noexpandtab:
+# :indentSize=8:tabSize=8:noTabs=false:
+#