Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / plugins / epan / wimaxasncp / CMakeLists.txt
blob4775ef98768400b3ad6388ac920d2d947c0e566e
1 # CMakeLists.txt
3 # Wireshark - Network traffic analyzer
4 # By Gerald Combs <gerald@wireshark.org>
5 # Copyright 1998 Gerald Combs
7 # SPDX-License-Identifier: GPL-2.0-or-later
10 include(WiresharkPlugin)
12 # Plugin name and version info (major minor micro extra)
13 set_module_info(wimaxasncp 0 0 1 0)
15 set(DISSECTOR_SRC
16         packet-wimaxasncp.c
19 set(PLUGIN_FILES
20         plugin.c
21         ${DISSECTOR_SRC}
24 add_lex_files(LEX_FILES PLUGIN_FILES
25         wimaxasncp_dict.l
28 set_source_files_properties(
29         ${DISSECTOR_SRC}
30         PROPERTIES
31         COMPILE_FLAGS "${WERROR_COMMON_FLAGS}"
34 register_plugin_files(plugin.c
35         plugin
36         ${DISSECTOR_SRC}
39 add_wireshark_plugin_library(wimaxasncp epan)
41 target_link_libraries(wimaxasncp epan)
43 install_plugin(wimaxasncp epan)
45 file(GLOB DISSECTOR_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*.h")
46 CHECKAPI(
47         NAME
48           wimaxasncp
49         SWITCHES
50           --group dissectors-prohibited
51           --group dissectors-restricted
52         SOURCES
53           ${DISSECTOR_SRC}
54           ${DISSECTOR_HEADERS}
55 # LEX files commented out due to use of malloc, free etc.
56 #         ${LEX_FILES}
60 # Editor modelines  -  https://www.wireshark.org/tools/modelines.html
62 # Local variables:
63 # c-basic-offset: 8
64 # tab-width: 8
65 # indent-tabs-mode: t
66 # End:
68 # vi: set shiftwidth=8 tabstop=8 noexpandtab:
69 # :indentSize=8:tabSize=8:noTabs=false: