- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我很难将编译器命令行调用转换为 CMakeLists.txt,目标是使用 Microsoft Rest SDK casablanca。因为我是新手,所以我不知道我的 CMakeLists.txt 有什么问题
我使用它成功构建(在 macOS 上):
$ clang++ request.cpp -o request -std=c++11 -Wall -stdlib=libc++ -I/usr/local/Cellar/cpprestsdk/2.9.1/include/ -I/usr/local/Cellar/openssl/1.0.2l/include/ -L/usr/local/Cellar/openssl/1.0.2l/lib/ -lssl -lcrypto -lcpprest -lboost_system -lboost_thread-mt -lboost_chrono-mt
但是运行 cmake 和 make 我得到:
clang: warning: -lssl: 'linker' input unused [-Wunused-command-line-argument]
clang: warning: -lcrypto: 'linker' input unused [-Wunused-command-line-argument]
clang: warning: -lcpprest: 'linker' input unused [-Wunused-command-line-argument]
clang: warning: -lboost_system: 'linker' input unused [-Wunused-command-line-argument]
clang: warning: -lboost_thread-mt: 'linker' input unused [-Wunused-command-line-argument]
clang: warning: -lboost_chrono-mt: 'linker' input unused [-Wunused-command-line-argument]
clang: warning: argument unused during compilation: '-L/usr/local/Cellar/openssl/1.0.2l/lib/' [-Wunused-command-line-argument]
/Users/mtobal/Documents/exercises/sandbox/request.cpp:2:10: fatal error: 'cpprest/http_client.h' file not found
#include <cpprest/http_client.h>
^~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
make[2]: *** [CMakeFiles/request.dir/request.cpp.o] Error 1
make[1]: *** [CMakeFiles/request.dir/all] Error 2
make: *** [all] Error 2
我知道问题不是找到库,因为我设法通过命令行调用解决了问题,但在 CMakeLists.txt 上我没有。有什么想法吗?
CMakeLists.txt:
cmake_minimum_required (VERSION 2.8.11)
project (REST)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_COMPILER "clang++")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS} -stdlib=libc++ -I/usr/local/Cellar/openssl/1.0.2l/include/ -L/usr/local/Cellar/openssl/1.0.2l/lib/ -lssl -lcrypto -lcpprest -lboost_system -lboost_thread-mt -lboost_chrono-mt ")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++ -I/usr/local/Cellar/openssl/1.0.2l/include/ -L/usr/local/Cellar/openssl/1.0.2l/lib/ -lssl -lcrypto -lcpprest -lboost_system -lboost_thread-mt -lboost_chrono-mt ")
include_directories("/usr/local/Cellar/cpprestsdk/2.9.1/include")
include_directories("/usr/local/Cellar/boost/1.64.0_1/include")
include_directories("/usr/local/Cellar/openssl/1.0.2l/include")
link_directories("/usr/local/Cellar/openssl/1.0.2l/lib/")
link_libraries(ssl crypto cpprest boost_system boost_thread-mt boost_chrono-mt)
#find_library(ssl crypto cpprest boost_system boost_thread-mt boost_chrono-mt)
set(SOURCE_FILES request.cpp)
add_executable (request ${SOURCE_FILES})
C++代码:
#include <iostream>
#include <cpprest/http_client.h>
#include <cpprest/filestream.h>
using namespace utility; // Common utilities like string conversions
using namespace web; // Common features like URIs.
using namespace web::http; // Common HTTP functionality
using namespace web::http::client; // HTTP client features
using namespace concurrency::streams; // Asynchronous streams
int main(){
// std::cout << "Hello again!" << std::endl;
auto fileStream = std::make_shared<ostream>();
// Open stream to output file.
pplx::task<void> requestTask = fstream::open_ostream(U("results.html"))
.then([=](ostream outFile)
{
*fileStream = outFile;
// Create http_client to send the request.
http_client client(U("http://www.bing.com/"));
// Build request URI and start the request.
uri_builder builder(U("/search"));
builder.append_query(U("q"), U("cpprestsdk github"));
return client.request(methods::GET, builder.to_string());
})
// Handle response headers arriving.
.then([=](http_response response)
{
printf("Received response status code:%u\n", response.status_code());
// Write response body into the file.
return response.body().read_to_end(fileStream->streambuf());
})
// Close the file stream.
.then([=](size_t)
{
return fileStream->close();
});
// Wait for all the outstanding I/O to complete and handle any exceptions
try
{
requestTask.wait();
}
catch (const std::exception &e)
{
printf("Error exception:%s\n", e.what());
}
}
-- 更新--现在尝试这个(按照 Tsyvarev 的建议)一些路径版本是错误的:
cmake_minimum_required (VERSION 2.8.11)
project (rest)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_COMPILER "g++")
include_directories("/usr/local/Cellar/cpprestsdk/2.10.2/include")
include_directories("/usr/local/Cellar/boost/1.66.0/include")
include_directories("/usr/local/Cellar/openssl/1.0.2l/include")
link_directories("/usr/local/Cellar/openssl/1.0.2l/lib/")
link_directories("/usr/local/Cellar/cpprestsdk/2.10.2/include")
link_directories("/usr/local/Cellar/boost/1.66.0/include")
link_libraries(ssl crypto cpprest boost_system boost_thread-mt boost_chrono-mt)
set(SOURCE_FILES request.cpp)
add_executable (request ${SOURCE_FILES})
现在我得到:
[ 50%] Linking CXX executable request
ld: library not found for -lcpprest
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [request] Error 1
make[1]: *** [CMakeFiles/request.dir/all] Error 2
make: *** [all] Error 2
最佳答案
好的伙计们,多亏了 Tsyvarev,它现在可以构建了。如前所述,它应该指向 link_directories 的 lib。此外,检查安装的软件(库)的版本也很重要,否则找不到任何库。
我在 MacOS 上使用 clang 构建的最终 CMakeLists.txt 是:
cmake_minimum_required (VERSION 2.8.11)
project (rest)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_COMPILER "clang++")
include_directories("/usr/local/Cellar/cpprestsdk/2.10.2/include")
include_directories("/usr/local/Cellar/boost/1.66.0/include")
include_directories("/usr/local/Cellar/openssl/1.0.2l/include")
link_directories("/usr/local/Cellar/openssl/1.0.2l/lib/")
link_directories("/usr/local/Cellar/cpprestsdk/2.10.2/lib")
link_directories("/usr/local/Cellar/boost/1.66.0/lib")
link_libraries(ssl crypto boost_system boost_thread-mt boost_chrono-mt cpprest)
set(SOURCE_FILES request.cpp)
add_executable (request ${SOURCE_FILES})
关于c++ - 将编译器命令行转换为 Casablanca Rest SDK 的 CMakeLists.txt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49273341/
我有三个共享库:lib_1.so、lib_2.so 和 lib_3.so。如何只创建一个名为 lib_all.so 的库,它将包含所有三个库? 我正在尝试编译一些源文件,其中包括来自两个子项目/子目录
我正在构建一个中型 C++ 库,而我的 CMakeLists.txt 文件开始变得有点长。我正在阅读 Robert Martin 的书 The Clean Coder,他在书中讨论了为了代码维护和可读
头文件,库文件: cmake 头文件 库文件_jacke121的专栏-CSDN博客_cmake 头文件 error: ‘__declspec‘ attributes are not enabled;
您好,我有一个名为“问题 1” 的目录,其结构如下: .idea cmake-build-debug 1a.c 1b.c 1c.c CMakeLists.txt .idea 和 cmake-build
我是第一次尝试使用 CMake,并且正在努力将头文件链接到我的 main.h 文件中。我的 cmake 目录如下所示: Project | CmakeLists.txt | src || CMakeL
我觉得这个问题已经被问过很多次了,但我找到的答案似乎都不适合我。我来自 Java 世界,因此对 CMake 和 C/C++ 非常陌生,并且正在努力理解 cmake 及其工作原理。 无论如何,基本上我有
我有一个项目结构,如: src/CMakeLists.txt src/test/component1/CMakeLists.txt src/test/component2/CMakeLists.txt
我想在我的 CMakeLists 中解析一个文件(XML、JSON 或类似文件)并相应地设置一些变量。 例如,假设我有以下文件: 然后在我的 CMakeLi
我想开始一个cmake项目,我有很多文件。结构如下。 types.h和functions.h中包含dag.hfunctions.h和basic.cpp, br.cpp, IR.cpp中包含UIR.cp
linking errors.你好。我有一个包含八个 .c 和八个 .h 文件的项目。我应该如何编写 CMakeLists.txt 来解决所有这些的依赖关系?创建库不是方法,因为每个文件都依赖于其他文
这个问题已经有答案了: Define preprocessor macro through CMake? (6 个回答) 已关闭 5 年前。 在cmake中如何做条件预处理器#ifdef #endif
我在使用 Conan 创建 Cmakelists 的过程中遇到了一些问题。我只是按照官方的例子,但它对我不起作用...... 这是我的 Cmakefiles.txt : cmake_minimum_r
我有以下问题:我有两组不同的文件(主文件和附加文件),我想将它们分开。所以,我有一组文件(主要),我是这样配置的: set(libplayersource .... )
我的项目中有一个目录树: /project /build /src main.cpp student.cpp /include
我正在编写一个游戏引擎,进展顺利。但是我遇到了一个问题,我的 CMakeLists.txt 太乱了,而且我对 CMake 了解不够。我的项目使用多个 (CMake) 库,这些库是使用 add_subd
到处搜索后,我找不到任何东西或任何人来帮助我弄清楚如何将 GL GLEW 和 SDL2 库添加到我的 CMakeLists.txt 中。我正在使用 Ubuntu 14.04 LTS 并使用 安装了以下
在 cmake 项目中包含外部库通常使用 find_package() 执行。 但是在一个大型的多应用程序/多库项目中,一些第 3 方和/或系统库被多个应用程序和库使用是很典型的。 这些常用库的fin
我从官网下载了可移植的CMake版本,并安装在我的家目录(~/usr),因为我没有root或sudo权限。 如何在CMakeLists.txt中指定CMake的安装路径,如~/usr/cmake-pa
介绍 CMakeLists.txt官网教程 , cmake命令配置等教程 CMakeLists.txt文件使用的是Cmake命令完成的,那么我们来了解下常用的命令使用, 这是必须要会的,否则静态库,动
我在使用 Clion (1.0.1) 和 CMakeLists.txt 时遇到问题。 我将 GitHub 用于我的项目,并直接从 IDE 中提交它们。如果我随后在另一台计算机上 checkout 该项
我是一名优秀的程序员,十分优秀!