c++ - Cannot open include file: 'cpprest/http_client.h' -
i'm trying run c++ windows application using casablanca 'c++ rest sdk' rest requests. i've created new 'clr empty project' (visual studio 2012) , added new item - 'windows form'. added code , able see form when running projects. now, have installed c++ rest sdk using nuget, instructions tell. went successfully. problem in order use 'c++ rest sdk' i've added these:
#include <cpprest/http_client.h> #include <cpprest/filestream.h>
and doesn't find files. i'm getting
fatal error c1083: cannot open include file: 'cpprest/http_client.h': no such file or directory
project screenshot:
thanks!
check if have set include directories headers. can under project properties -> configuration properties -> c/c++ -> general -> additional include directories.
Comments
Post a Comment