You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 1, 2026. It is now read-only.
On Main Page: https://github.com/microsoft/cpprestsdk (09/26/2023)
To use from CMake:
`
cmake_minimum_required(VERSION 3.9)
project(main)
find_package(cpprestsdk REQUIRED)
add_executable(main main.cpp)
target_link_libraries(main PRIVATE cpprestsdk::cpprest)
`
Is missing the linker Option "-lcrypto", thus it should be:
`
cmake_minimum_required(VERSION 3.9)
project(main)
find_package(cpprestsdk REQUIRED)
add_link_options(-lcrypto)
add_executable(main main.cpp)
target_link_libraries(main PRIVATE cpprestsdk::cpprest)
`
Thanks