ikev2: add support for custom ipsec-over-udp port
[vpp.git] / src / plugins / quic / CMakeLists.txt
1
2 # Copyright (c) 2019 Cisco
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 message(STATUS "Looking for quicly")
16 unset(QUIC_LINK_LIBRARIES)
17
18 find_path(QUICLY_INCLUDE_DIR NAMES quicly.h)
19 find_path(PICOTLS_INCLUDE_DIR NAMES picotls.h)
20 find_library (QUICLY_LIBRARY NAMES "libquicly.a")
21 find_library (PICOTLS_CORE_LIBRARY NAMES "libpicotls-core.a")
22 find_library (PICOTLS_OPENSSL_LIBRARY NAMES "libpicotls-openssl.a")
23
24 list(APPEND QUIC_LINK_LIBRARIES
25   ${QUICLY_LIBRARY}
26   ${PICOTLS_CORE_LIBRARY}
27   ${PICOTLS_OPENSSL_LIBRARY}
28 )
29
30 if(QUICLY_INCLUDE_DIR AND QUIC_LINK_LIBRARIES)
31   include_directories (${QUICLY_INCLUDE_DIR})
32
33   if(PICOTLS_INCLUDE_DIR)
34     include_directories (${PICOTLS_INCLUDE_DIR})
35   endif()
36
37   add_vpp_plugin(quic
38     SOURCES
39     certs.c
40     error.c
41     quic.c
42     quic_crypto.c
43
44     LINK_LIBRARIES ${QUIC_LINK_LIBRARIES}
45   )
46   message(STATUS "Found quicly in ${QUICLY_INCLUDE_DIR}")
47 else()
48   message(WARNING "-- quicly not found - quic_plugin disabled")
49 endif()