a6bb8dc7dcdef40fde3d643ca38164e9d59d059f
[vpp.git] / src / plugins / crypto_ipsecmb / CMakeLists.txt
1
2 # Copyright (c) 2019 Cisco Systems
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 find_path(IPSECMB_INCLUDE_DIR NAMES intel-ipsec-mb.h HINTS ${IPSECMB_INCLUDE_DIR_HINT})
16 find_library(IPSECMB_LIB NAMES libIPSec_MB.a HINTS ${IPSECMB_LIB_DIR_HINT})
17
18 if(IPSECMB_INCLUDE_DIR AND IPSECMB_LIB)
19
20         get_filename_component(IPSECMB_LIB_DIR ${IPSECMB_LIB} DIRECTORY)
21         set(IPSECMB_LINK_FLAGS "${IPSECMB_LINK_FLAGS} -L${IPSECMB_LIB_DIR} -Wl,--whole-archive ${IPSECMB_LIB} -Wl,--no-whole-archive")
22         set(IPSECMB_LINK_FLAGS "${IPSECMB_LINK_FLAGS} -Wl,--exclude-libs,libIPSec_MB.a,-l:libIPSec_MB.a")
23         include_directories(${IPSECMB_INCLUDE_DIR})
24         add_vpp_plugin(crypto_ipsecmb
25                 SOURCES
26                 ipsecmb.c
27
28                 LINK_FLAGS
29                 ${IPSECMB_LINK_FLAGS}
30                 )
31
32         message(STATUS "Intel IPSecMB found: ${IPSECMB_INCLUDE_DIR}")
33 else()
34         message(STATUS "Intel IPSecMB not found")
35 endif()