55 lines
1.8 KiB
CMake
55 lines
1.8 KiB
CMake
# - Try to find ed25519 include dirs and libraries
|
|
#
|
|
# Usage of this module as follows:
|
|
#
|
|
# find_package(ed25519)
|
|
#
|
|
# Variables used by this module, they can change the default behaviour and need
|
|
# to be set before calling find_package:
|
|
#
|
|
# ed25519_ROOT_DIR Set this variable to the root installation of
|
|
# ed25519 if the module has problems finding the
|
|
# proper installation path.
|
|
#
|
|
# Variables defined by this module:
|
|
#
|
|
# ed25519_FOUND System has ed25519, include and library dirs found
|
|
# ed25519_INCLUDE_DIR The ed25519 include directories.
|
|
# ed25519_LIBRARIES_STATIC The ed25519 libraries.
|
|
# ed25519_LIBRARIES_SHARED The ed25519 libraries.
|
|
|
|
find_path(ed25519_ROOT_DIR
|
|
NAMES include/ed25519.h CMakeLists.txt
|
|
HINTS ${ed25519_ROOT_DIR}
|
|
)
|
|
|
|
#This NEEDS a fix!
|
|
find_path(ed25519_INCLUDE_DIR
|
|
NAMES ed25519/ed25519.h
|
|
PATH_SUFFIXES include
|
|
HINTS ${ed25519_ROOT_DIR} ${ed25519_ROOT_DIR}/build ${ed25519_ROOT_DIR}/libs ${ed25519_ROOT_DIR}/out/win32_amd64
|
|
)
|
|
|
|
find_library(ed25519_LIBRARIES_STATIC
|
|
NAMES ed25519.lib ed25519.a
|
|
PATH_SUFFIXES out/win32_amd64/Release out/win32/Release out/win32_x64/Release
|
|
HINTS ${ed25519_ROOT_DIR} ${ed25519_ROOT_DIR}/build ${ed25519_ROOT_DIR}/libs ${ed25519_ROOT_DIR}/out/
|
|
)
|
|
|
|
find_library(ed25519_LIBRARIES_SHARED
|
|
NAMES ed25519.dll ed25519.so
|
|
PATH_SUFFIXES out/win32_amd64/Release out/win32/Release out/win32_x64/Release
|
|
HINTS ${ed25519_ROOT_DIR} ${ed25519_ROOT_DIR}/build ${ed25519_ROOT_DIR}/libs ${ed25519_ROOT_DIR}/out/
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(ed25519 DEFAULT_MSG
|
|
ed25519_INCLUDE_DIR
|
|
)
|
|
|
|
mark_as_advanced(
|
|
ed25519_ROOT_DIR
|
|
ed25519_INCLUDE_DIR
|
|
ed25519_LIBRARIES_STATIC
|
|
ed25519_LIBRARIES_SHARED
|
|
) |