wireshark/epan/crypt/CMakeLists.txt
John Thacker b80cdaa243 libgcrypt: Require version 1.8.0
Libgcrypt 1.8.x is required for a large amount of decryption
support and is the current LTS version of libgcrypt. The 1.6 and
1.7 series have been end-of-life since 2017-06-30 and 2019-06-30,
respectively.

The Linux distributions that have versions of libgcrypt before 1.8.0
are nearing or at end of support (RHEL7, SLES 12, Debian stretch,
Ubuntu 16.04LTS) and can be supported by the Wireshark 3.6 LTS release
series.

Remove an enormous amount of ifdefs based on libgcrypt versions
1.6.0, 1.7.0, and 1.8.0. There will be a second pass for the
commons defines HAVE_LIBGCRYPT_AEAD, HAVE_LIBGCRYPT_CHACHA20, and
HAVE_LIBGCRYPT_CHACHA20_POLY1305, which are now always defined.

The ISAKMP dissector has some comments noting that some workarounds
were used for libgcrypt 1.6 that aren't needed with 1.7; perhaps
that could be updated now.
2022-04-20 21:30:21 -04:00

84 lines
1.4 KiB
CMake

# CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
ADD_CUSTOM_CMAKE_INCLUDE()
set(CRYPT_HEADER_FILES
dot11decrypt_debug.h
dot11decrypt_int.h
dot11decrypt_interop.h
dot11decrypt_system.h
dot11decrypt_user.h
dot11decrypt_util.h
dot11decrypt_ws.h
kasumi.h
wep-wpadefs.h
)
set(CRYPT_FILES
dot11decrypt.c
dot11decrypt_tkip.c
dot11decrypt_util.c
${CUSTOM_CRYPT_SRC}
)
list(APPEND CRYPT_FILES
dot11decrypt_ccmp.c
dot11decrypt_gcmp.c
)
source_group(crypt FILES ${CRYPT_FILES})
set_source_files_properties(
${CRYPT_FILES}
PROPERTIES
COMPILE_FLAGS "${WERROR_COMMON_FLAGS}"
)
add_library(crypt OBJECT
#Included so that Visual Studio can properly put header files in solution
${CRYPT_HEADER_FILES}
${CRYPT_FILES}
)
target_include_directories(crypt
SYSTEM PRIVATE
${GCRYPT_INCLUDE_DIRS}
PRIVATE
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
)
set_target_properties(crypt PROPERTIES
FOLDER "Libs/epan/crypt"
COMPILE_DEFINITIONS "WS_BUILD_DLL"
)
CHECKAPI(
NAME
crypt
SWITCHES
SOURCES
${CRYPT_FILES}
)
#
# Editor modelines - https://www.wireshark.org/tools/modelines.html
#
# Local variables:
# c-basic-offset: 8
# tab-width: 8
# indent-tabs-mode: t
# End:
#
# vi: set shiftwidth=8 tabstop=8 noexpandtab:
# :indentSize=8:tabSize=8:noTabs=false:
#