We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a9ca2c commit e193368Copy full SHA for e193368
README.md
@@ -29,11 +29,13 @@ To use from CMake:
29
cmake_minimum_required(VERSION 3.7)
30
project(main)
31
32
-find_library(CPPREST_LIB cpprest)
+find_path(CPPREST_INCLUDE cpprest/http_client.h)
33
+find_library(CPPREST_LIB NAMES cpprest_2_9d cpprest_2_9 cpprestd cpprest)
34
find_package(Boost REQUIRED COMPONENTS random system thread filesystem chrono atomic date_time regex)
35
find_package(OpenSSL 1.0.0 REQUIRED)
36
37
add_executable(main main.cpp)
38
+target_include_directories(main ${CPPREST_INCLUDE})
39
target_link_libraries(main
40
${CPPREST_LIB}
41
Boost::boost
0 commit comments