Files
vpp/src/plugins/ikev2/CMakeLists.txt
T
Damjan Marion 1fd912c8dd build: fix compilation on OpenSSL 3.0
So far by suppressing depreciation messages, as there was no transition
period.

Type: make
Change-Id: I9887613fd71a22bf11bf22a04c129aca4a16867f
Signed-off-by: Damjan Marion <damarion@cisco.com>
2022-01-27 20:35:57 +00:00

45 lines
1.1 KiB
CMake

# Copyright (c) 2018 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
if(NOT OPENSSL_FOUND)
message(WARNING "openssl headers not found - ikev2 plugin disabled")
return()
endif()
include_directories(${OPENSSL_INCLUDE_DIR})
add_compile_definitions(OPENSSL_SUPPRESS_DEPRECATED)
add_vpp_plugin(ikev2
SOURCES
ikev2.c
ikev2_api.c
ikev2_cli.c
ikev2_crypto.c
ikev2_format.c
ikev2_payload.c
API_FILES
ikev2_types.api
ikev2.api
API_TEST_SOURCES
ikev2_test.c
INSTALL_HEADERS
ikev2.h
ikev2_priv.h
LINK_LIBRARIES
${OPENSSL_LIBRARIES}
)