mirror of
https://github.com/arun11299/cpp-jwt.git
synced 2025-05-14 16:58:34 +00:00
12 lines
288 B
CMake
12 lines
288 B
CMake
@PACKAGE_INIT@
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
if(NOT @CPP_JWT_USE_VENDORED_NLOHMANN_JSON@)
|
|
find_dependency(nlohmann_json)
|
|
endif()
|
|
|
|
find_dependency(OpenSSL COMPONENTS SSL)
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|
|
check_required_components("@PROJECT_NAME@")
|