NAT44: active-passive HA (VPP-1571)
[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_reass.c
27   nat_dpo.c
28   nat44_cli.c
29   nat44_handoff.c
30   nat44_hairpinning.c
31   nat44_classify.c
32   nat64.c
33   nat64_cli.c
34   nat64_in2out.c
35   nat64_out2in.c
36   nat64_db.c
37   dslite_dpo.c
38   dslite.c
39   dslite_in2out.c
40   dslite_out2in.c
41   dslite_cli.c
42   dslite_ce_encap.c
43   dslite_ce_decap.c
44   nat66.c
45   nat66_cli.c
46   nat66_in2out.c
47   nat66_out2in.c
48   nat_affinity.c
49   nat_format.c
50   nat_syslog.c
51   nat_ha.c
52
53   MULTIARCH_SOURCES
54   dslite_ce_decap.c
55   dslite_ce_encap.c
56   dslite_in2out.c
57   dslite_out2in.c
58   in2out.c
59   in2out_ed.c
60   nat44_classify.c
61   nat44_hairpinning.c
62   nat44_handoff.c
63   nat64_in2out.c
64   nat64_out2in.c
65   nat66_in2out.c
66   nat66_out2in.c
67   nat_det_in2out.c
68   nat_det_out2in.c
69   out2in.c
70   out2in_ed.c
71
72   API_FILES
73   nat.api
74
75   API_TEST_SOURCES
76   nat_test.c
77
78   INSTALL_HEADERS
79   nat_all_api_h.h
80   nat_msg_enum.h
81 )