IGMP: proxy device
[vpp.git] / src / plugins / igmp / 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(igmp
15   SOURCES
16   igmp.c
17   igmp_query.c
18   igmp_report.c
19   igmp_group.c
20   igmp_src.c
21   igmp_config.c
22   igmp_cli.c
23   igmp_api.c
24   igmp_input.c
25   igmp_timer.c
26   igmp_pkt.c
27   igmp_ssm_range.c
28   igmp_format.c
29   igmp_proxy.c
30
31   API_FILES
32   igmp.api
33
34   INSTALL_HEADERS
35   igmp_all_api_h.h
36   igmp_msg_enum.h
37 )