cpprestsdk icon indicating copy to clipboard operation
cpprestsdk copied to clipboard

Documentation Bug in CMake File

Open DerTobiasRichter opened this issue 2 years ago • 0 comments

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

DerTobiasRichter avatar Sep 26 '23 12:09 DerTobiasRichter