Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / asn1 / CMakeLists.txt
bloba45357334ef5aa4ea0d7ba49c202f18f20714968
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 ADD_CUSTOM_CMAKE_INCLUDE()
12 set(ASN1_SRC_DIRS
13         lix2
14         HI2Operations
15         acp133
16         acse
17         ain
18         ansi_map
19         ansi_tcap
20         atn-cm
21         atn-cpdlc
22         atn-ulcs
23         c1222
24         camel
25         cbrs-oids
26         cdt
27         charging_ase
28         cmip
29         cmp
30         cms
31         credssp
32         crmf
33         dap
34         disp
35         dop
36         dsp
37         e1ap
38         e2ap
39         ess
40         f1ap
41         ftam
42         gdt
43         glow
44         goose
45         gprscdr
46         gsm_map
47         h225
48         h235
49         h245
50         h248
51         h282
52         h283
53         h323
54         h450
55         h450-ros
56         h460
57         h501
58         hnbap
59         idmp
60         ieee1609dot2
61         ilp
62         inap
63         isdn-sup
64         its
65         kerberos
66         kpm-v2
67         lcsap
68         ldap
69         lnpdqp
70         logotypecertextn
71         lpp
72         lppa
73         lppe
74         lte-rrc
75         m2ap
76         m3ap
77         mms
78         mpeg-audio
79         mpeg-pes
80         mudurl
81         nbap
82         ngap
83         nist-csor
84         nr-rrc
85         nrppa
86         ns_cert_exts
87         novell_pkis
88         ocsp
89         p1
90         p22
91         p7
92         p772
93         pcap
94         pkcs1
95         pkcs10
96         pkcs12
97         pkinit
98         pkix1explicit
99         pkix1implicit
100         pkixac
101         pkixproxy
102         pkixqualified
103         pkixtsp
104         pres
105         q932
106         q932-ros
107         qsig
108         ranap
109         rc-v3
110         rnsap
111         ros
112         rrc
113         rrlp
114         rtse
115         rua
116         s1ap
117         sabp
118         sbc-ap
119         smrse
120         snmp
121         spnego
122         sv
123         t124
124         t125
125         t38
126         tcap
127         tcg-cp-oids
128         tetra
129         ulp
130         wlancertextn
131         x2ap
132         x509af
133         x509ce
134         x509if
135         x509sat
136         xnap
137         z3950
138         ${CUSTOM_ASN1_SRC_DIR}
141 set( BROKEN_ASN1_SRC_DIRS
142         # x721 does not build
143         x721
146 set(_asn1_deps)
147 foreach(ASN1_DIR ${ASN1_SRC_DIRS})
148         add_subdirectory( ${ASN1_DIR} )
149         list(APPEND _asn1_deps ${ASN1_DIR}/generate_dissector-${ASN1_DIR})
150 endforeach()
152 # Target to regenerate all outdated ASN.1 dissectors
153 add_custom_target(asn1 DEPENDS ${_asn1_deps})