freebsd-dev/contrib/libfido2/tools/CMakeLists.txt
Ed Maste f540a43052 libfido2: update to 1.9.0
Some highlights from NEWS:

 ** Added OpenSSL 3.0 compatibility.
 ** Removed OpenSSL 1.0 compatibility.
 ** Support for FIDO 2.1 "minPinLength" extension.
 ** Support for COSE_EDDSA, COSE_ES256, and COSE_RS1 attestation.
 ** Support for TPM 2.0 attestation.
 ** Support for device timeouts; see fido_dev_set_timeout().
 ** New API calls:
  - es256_pk_from_EVP_PKEY;
  - fido_cred_attstmt_len;
  - fido_cred_attstmt_ptr;
  - fido_cred_pin_minlen;
  - fido_cred_set_attstmt;
  - fido_cred_set_pin_minlen;
  - fido_dev_set_pin_minlen_rpid;
  - fido_dev_set_timeout;
  - rs256_pk_from_EVP_PKEY.
 ** Reliability and portability fixes.
 ** Better handling of HID devices without identification strings; gh#381.

Relnotes:       Yes
Sponsored by:   The FreeBSD Foundation
2023-05-05 19:11:52 -04:00

81 lines
1.9 KiB
CMake

# Copyright (c) 2018 Yubico AB. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
list(APPEND COMPAT_SOURCES
../openbsd-compat/bsd-getpagesize.c
../openbsd-compat/explicit_bzero.c
../openbsd-compat/freezero.c
../openbsd-compat/recallocarray.c
../openbsd-compat/strlcat.c
../openbsd-compat/strlcpy.c
../openbsd-compat/strsep.c
)
if(WIN32 AND NOT CYGWIN AND NOT MSYS)
list(APPEND COMPAT_SOURCES
../openbsd-compat/bsd-getline.c
../openbsd-compat/endian_win32.c
../openbsd-compat/explicit_bzero_win32.c
../openbsd-compat/getopt_long.c
../openbsd-compat/readpassphrase_win32.c
)
if (BUILD_SHARED_LIBS)
list(APPEND COMPAT_SOURCES ../openbsd-compat/posix_win.c)
endif()
else()
list(APPEND COMPAT_SOURCES ../openbsd-compat/readpassphrase.c)
endif()
if(NOT MSVC)
set_source_files_properties(assert_get.c assert_verify.c base64.c bio.c
config.c cred_make.c cred_verify.c credman.c fido2-assert.c
fido2-cred.c fido2-token.c pin.c token.c util.c
PROPERTIES COMPILE_FLAGS "-Wconversion -Wsign-conversion")
endif()
add_executable(fido2-cred
fido2-cred.c
cred_make.c
cred_verify.c
base64.c
util.c
${COMPAT_SOURCES}
)
add_executable(fido2-assert
fido2-assert.c
assert_get.c
assert_verify.c
base64.c
util.c
${COMPAT_SOURCES}
)
add_executable(fido2-token
fido2-token.c
base64.c
bio.c
config.c
credman.c
largeblob.c
pin.c
token.c
util.c
${COMPAT_SOURCES}
)
# set the library to link against
if(BUILD_SHARED_LIBS)
set(_FIDO2_LIBRARY fido2_shared)
else()
set(_FIDO2_LIBRARY fido2)
endif()
target_link_libraries(fido2-cred ${CRYPTO_LIBRARIES} ${_FIDO2_LIBRARY})
target_link_libraries(fido2-assert ${CRYPTO_LIBRARIES} ${_FIDO2_LIBRARY})
target_link_libraries(fido2-token ${CRYPTO_LIBRARIES} ${_FIDO2_LIBRARY})
install(TARGETS fido2-cred fido2-assert fido2-token
DESTINATION ${CMAKE_INSTALL_BINDIR})