在 CMakeList.txt 文件中包含 OpenSSL

Include OpenSSL in a CMakeList.txt file

我有一个问题要问在 C++ 中使用 CMakeList.txt 的人。我想使用 Podofo 项目(一个解析和创建 pdf 的项目)。

所以我的主要功能很简单:

#include <iostream>
#include <podofo/podofo.h>

int main() {
  PoDoFo::PdfMemDocument pdf;
  pdf.Load("/Users/user/path/to.pdf");

  int nbOfPage = pdf.GetPageCount();

  std::cout << "Our pdf have " << nbOfPage << " pages." << std::endl;
  return 0;
}

我的CMakeList.txt是:

cmake_minimum_required(VERSION 3.7)
project(untitled)

set(CMAKE_CXX_STANDARD 14)

set(SOURCE_FILES main.cpp)

add_executable(untitled ${SOURCE_FILES})

但是我遇到了这个错误:

/usr/local/include/podofo/base/PdfEncrypt.h:44:10: fatal error: 'openssl/opensslconf.h' file not found
#include <openssl/opensslconf.h

我试图包含 find_packagefind_library .. 设置一些变量,但我找不到方法。

我的环境是:

感谢高级社区!!

find_package是正确的做法;您会找到有关它的详细信息 here

在你的情况下,你应该添加这些行:

find_package(OpenSSL REQUIRED)
target_link_libraries(untitled OpenSSL::SSL)

如果CMake没有直接找到OpenSSL,你应该设置CMake变量OPENSSL_ROOT_DIR.