nat: use SVR
[vpp.git] / src / plugins / nat / CMakeLists.txt
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 add_vpp_plugin(nat
15   SOURCES
16   nat.c
17   nat_api.c
18   in2out.c
19   in2out_ed.c
20   out2in.c
21   out2in_ed.c
22   nat_ipfix_logging.c
23   nat_det.c
24   nat_det_in2out.c
25   nat_det_out2in.c
26   nat_dpo.c
27   nat44_cli.c
28   nat44_handoff.c
29   nat44_hairpinning.c
30   nat44_classify.c
31   nat64.c
32   nat64_cli.c
33   nat64_in2out.c
34   nat64_out2in.c
35   nat64_db.c
36   dslite_dpo.c
37   dslite.c
38   dslite_in2out.c
39   dslite_out2in.c
40   dslite_cli.c
41   dslite_ce_encap.c
42   dslite_ce_decap.c
43   nat66.c
44   nat66_cli.c
45   nat66_in2out.c
46   nat66_out2in.c
47   nat_affinity.c
48   nat_format.c
49   nat_syslog.c
50   nat_ha.c
51
52   MULTIARCH_SOURCES
53   dslite_ce_decap.c
54   dslite_ce_encap.c
55   dslite_in2out.c
56   dslite_out2in.c
57   in2out.c
58   in2out_ed.c
59   nat44_classify.c
60   nat44_hairpinning.c
61   nat44_handoff.c
62   nat64_in2out.c
63   nat64_out2in.c
64   nat66_in2out.c
65   nat66_out2in.c
66   nat_det_in2out.c
67   nat_det_out2in.c
68   out2in.c
69   out2in_ed.c
70
71   API_FILES
72   nat.api
73
74   API_TEST_SOURCES
75   nat_test.c
76
77   INSTALL_HEADERS
78   nat_all_api_h.h
79   nat_msg_enum.h
80 )