37 lines
1.2 KiB
CMake
37 lines
1.2 KiB
CMake
if(NOT CRYPTOPP_FOUND)
|
|
pkg_check_modules(CRYPTOPP_TMP libcrypto++)
|
|
|
|
find_path(CRYPTOPP_INCLUDE_DIRS NAMES cryptlib.h
|
|
PATHS
|
|
${CRYPTOPP_TMP_INCLUDE_DIRS}
|
|
/usr/include
|
|
/usr/include/crypto++
|
|
/usr/local/include
|
|
/usr/local/include/crypto++
|
|
)
|
|
|
|
find_library(CRYPTOPP_LIBRARY_DIRS NAMES crypto++
|
|
PATHS
|
|
${CRYPTOPP_TMP_LIBRARY_DIRS}
|
|
/usr/lib
|
|
/usr/locallib
|
|
)
|
|
|
|
if(CRYPTOPP_INCLUDE_DIRS AND CRYPTOPP_LIBRARY_DIRS)
|
|
set(CRYPTOPP_FOUND TRUE CACHE INTERNAL "Found cryptopp")
|
|
message(STATUS "Found cryptopp: ${CRYPTOPP_LIBRARY_DIRS}, ${CRYPTOPP_INCLUDE_DIRS}")
|
|
else()
|
|
set(CRYPTOPP_FOUND FALSE CACHE INTERNAL "Found cryptopp")
|
|
message(STATUS "Cryptopp not found.")
|
|
endif()
|
|
endif()
|
|
|
|
if(CRYPTOPP_FOUND AND NOT TARGET cryptopp::cryptopp)
|
|
add_library(cryptopp::cryptopp UNKNOWN IMPORTED)
|
|
set_target_properties(cryptopp::cryptopp PROPERTIES
|
|
INCLUDE_DIRECTORIES ${CRYPTOPP_INCLUDE_DIRS}
|
|
INTERFACE_LINK_LIBRARIES ${CRYPTOPP_LIBRARY_DIRS}
|
|
IMPORTED_LOCATION ${CRYPTOPP_LIBRARY_DIRS}
|
|
)
|
|
endif()
|