0

我正在尝试使用 VS2017 为 Web 帖子(REST)构建一个 linux 控制台应用程序。

我可以用 VS2017 为 linux 编译 cpprestsdk 吗?

4

1 回答 1

0

是的,你当然可以。

  1. 使用“使用 C++ 进行 Linux 开发”安装 Vs2017
    https://www.hanselman.com/blog/WritingAndDebuggingLinuxCApplicationsFromVisualStudioUsingTheWindowsSubsystemForLinux.aspx
    然后您现在可以使用 Linux 创建和调试
  2. 在您的 Linux 服务器上安装 cpprestsdk
    https://github.com/Microsoft/cpprestsdk/wiki/How-to-build-for-Linux
  3. 打开 VS 项目 [Linker] 的 [Property] -> [Input]
    将“boost_system; crypto; ssl; cpprest” 添加到 [Library Dependencies]。

    然后它工作。希望这会帮助你。
于 2018-07-17T13:16:43.550 回答