Remove target option when IPSecMB disabled
[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 if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
16   return()
17 endif()
18
19 find_path(IPSECMB_INCLUDE_DIR NAMES intel-ipsec-mb.h HINTS ${IPSECMB_INCLUDE_DIR_HINT})
20 find_library(IPSECMB_LIB NAMES libIPSec_MB.a HINTS ${IPSECMB_LIB_DIR_HINT})
21
22 if(IPSECMB_INCLUDE_DIR AND IPSECMB_LIB)
23
24         get_filename_component(IPSECMB_LIB_DIR ${IPSECMB_LIB} DIRECTORY)
25         set(IPSECMB_LINK_FLAGS "${IPSECMB_LINK_FLAGS} -L${IPSECMB_LIB_DIR} -Wl,--whole-archive ${IPSECMB_LIB} -Wl,--no-whole-archive")
26         set(IPSECMB_LINK_FLAGS "${IPSECMB_LINK_FLAGS} -Wl,--exclude-libs,libIPSec_MB.a,-l:libIPSec_MB.a")
27         include_directories(${IPSECMB_INCLUDE_DIR})
28         add_vpp_plugin(crypto_ipsecmb
29                 SOURCES
30                 ipsecmb.c
31
32                 LINK_FLAGS
33                 ${IPSECMB_LINK_FLAGS}
34                 )
35
36         target_compile_options(crypto_ipsecmb_plugin PRIVATE "-march=silvermont")
37         message(STATUS "Intel IPSecMB found: ${IPSECMB_INCLUDE_DIR}")
38 else()
39         message(STATUS "Intel IPSecMB not found")
40 endif()