GBP: fix UT after multi-arch change
[vpp.git] / src / plugins / gbp / 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(gbp
15   SOURCES
16   gbp_api.c
17   gbp_bridge_domain.c
18   gbp_classify.c
19   gbp_classify_node.c
20   gbp_contract.c
21   gbp_endpoint.c
22   gbp_endpoint_group.c
23   gbp_ext_itf.c
24   gbp_fwd.c
25   gbp_fwd_dpo.c
26   gbp_fwd_node.c
27   gbp_itf.c
28   gbp_learn.c
29   gbp_learn_node.c
30   gbp_policy.c
31   gbp_policy_dpo.c
32   gbp_policy_node.c
33   gbp_recirc.c
34   gbp_route_domain.c
35   gbp_scanner.c
36   gbp_sclass.c
37   gbp_sclass_node.c
38   gbp_subnet.c
39   gbp_vxlan.c
40   gbp_vxlan_node.c
41
42   MULTIARCH_SOURCES
43   gbp_classify_node.c
44   gbp_fwd_dpo.c
45   gbp_fwd_node.c
46   gbp_learn_node.c
47   gbp_policy_dpo.c
48   gbp_policy_node.c
49   gbp_vxlan_node.c
50   gbp_sclass_node.c
51
52   API_FILES
53   gbp.api
54
55   INSTALL_HEADERS
56   gbp.h
57   gbp_all_api_h.h
58   gbp_msg_enum.h
59 )