38ecf6448964d112df20681ed313d242aba1ac6a
[vpp.git] / src / plugins / ipsecmb / 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 find_path(IPSECMB_INCLUDE_DIR NAMES intel-ipsec-mb.h HINTS ${IPSECMB_INCLUDE_DIR_HINT})
15 find_library(IPSECMB_LIB NAMES libIPSec_MB.a HINTS ${IPSECMB_LIB_DIR_HINT})
16
17 if(IPSECMB_INCLUDE_DIR AND IPSECMB_LIB)
18
19         get_filename_component(IPSECMB_LIB_DIR ${IPSECMB_LIB} DIRECTORY)
20         set(IPSECMB_LINK_FLAGS "${IPSECMB_LINK_FLAGS} -L${IPSECMB_LIB_DIR} -Wl,--whole-archive ${IPSECMB_LIB} -Wl,--no-whole-archive")
21         set(IPSECMB_LINK_FLAGS "${IPSECMB_LINK_FLAGS} -Wl,--exclude-libs,libIPSec_MB.a,-l:libIPSec_MB.a")
22         include_directories(${IPSECMB_INCLUDE_DIR})
23         add_vpp_plugin(ipsecmb
24                 SOURCES
25                 ipsecmb.c
26                 ah_encrypt.c
27                 ah_decrypt.c
28                 esp_encrypt.c
29                 esp_decrypt.c
30
31                 MULTIARCH_SOURCES
32                 ah_encrypt.c
33                 ah_decrypt.c
34                 esp_encrypt.c
35                 esp_decrypt.c
36
37                 LINK_FLAGS
38                 ${IPSECMB_LINK_FLAGS}
39                 )
40
41         message(STATUS "Intel IPSecMB found: ${IPSECMB_INCLUDE_DIR}")
42 else()
43         message(STATUS "Intel IPSecMB not found")
44 endif()
45
46