76662f96cf364500f1c740918a0ecbf09ffcf1a0
[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
51   API_FILES
52   nat.api
53
54   API_TEST_SOURCES
55   nat_test.c
56
57   INSTALL_HEADERS
58   nat_all_api_h.h
59   nat_msg_enum.h
60 )