Update code to v1.0.14 (10)

This commit is contained in:
Caten
2024-02-29 19:35:00 +08:00
parent c2ee3b694c
commit a956d26f6d
3188 changed files with 2317293 additions and 146 deletions

View File

@@ -0,0 +1,20 @@
# Filename: FindOQS.cmake
# Authors: darktohka (27 Jul, 2022)
#
# Usage:
# find_package(OQS [REQUIRED] [QUIET])
#
# Once done this will define:
# OQS_FOUND - system has liboqs
# OQS_INCLUDE_DIR - the include directory containing oqs/
# OQS_LIBRARY - the path to the liboqs library
#
find_path(OQS_INCLUDE_DIR NAMES "oqs/common.h")
find_library(OQS_LIBRARY NAMES "oqs")
mark_as_advanced(OQS_INCLUDE_DIR OQS_LIBRARY)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(OQS DEFAULT_MSG OQS_INCLUDE_DIR OQS_LIBRARY)