sec_vt_header: dissect call_id
[metze/wireshark/wip.git] / asn1 / CMakeLists.txt
1 # CMakeLists.txt
2 #
3 # $Id$
4 #
5 # Wireshark - Network traffic analyzer
6 # By Gerald Combs <gerald@wireshark.org>
7 # Copyright 1998 Gerald Combs
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License
11 # as published by the Free Software Foundation; either version 2
12 # of the License, or (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #
23
24
25 set(ASN1_SRC_DIRS
26         HI2Operations
27         acp133
28         acse
29         ansi_map
30         ansi_tcap
31         atn-cm
32         atn-cpdlc
33         atn-ulcs
34         c1222
35         camel
36         cdt
37         charging_ase
38         cmip
39         cmp
40         cms
41         credssp
42         crmf
43         dap
44         disp
45         dop
46         dsp
47         ess
48         ftam
49         gnm
50         goose
51         gprscdr
52         gsm_map
53         h225
54         h235
55         h245
56         h248
57         h282
58         h283
59         h323
60         h450
61         h450-ros
62         h460
63         h501
64         hnbap
65         idmp
66         ilp
67         inap
68         isdn-sup
69         lcsap
70         ldap
71         logotypecertextn
72         lpp
73         lppa
74         lppe
75         lte-rrc
76         m3ap
77         mms
78         mpeg-audio
79         mpeg-pes
80         nbap
81         ns_cert_exts
82         novell_pkis
83         ocsp
84         p1
85         p22
86         p7
87         p772
88         pcap
89         pkcs1
90         pkcs12
91         pkinit
92         pkix1explicit
93         pkix1implicit
94         pkixac
95         pkixproxy
96         pkixqualified
97         pkixtsp
98         pres
99         q932
100         q932-ros
101         qsig
102         ranap
103         rnsap
104         ros
105         rrc
106         rrlp
107         rtse
108         rua
109         s1ap
110         sabp
111         sbc-ap
112         smrse
113         snmp
114         spnego
115         sv
116         t124
117         t125
118         t38
119         tcap
120         tetra
121         ulp
122         wlancertextn
123         x2ap
124         x509af
125         x509ce
126         x509if
127         x509sat
128 )
129
130 set( BROKEN_ASN1_SRC_DIRS
131         # Kerberos is a handwritten dissector, don't replace
132         kerberos
133         # x721 does not build
134         x721
135 )
136
137 foreach(ASN1_DIR ${ASN1_SRC_DIRS})
138         add_subdirectory( ${ASN1_DIR} )
139 endforeach()
140