我正在尝试使用 Libarchive 在我的项目中提取存档文件。在独立代码中,我使用以下方法包含 libarchive 的 archive.h:
#include <archive.h>
但是我在项目中看到不直接包含头文件,它们使用:
#include <poppler/cpp/poppler-document.h>
为什么不直接包含 poppler-document.h?那么这些目录是如何指定的呢?
我正在尝试使用 Libarchive 在我的项目中提取存档文件。在独立代码中,我使用以下方法包含 libarchive 的 archive.h:
#include <archive.h>
但是我在项目中看到不直接包含头文件,它们使用:
#include <poppler/cpp/poppler-document.h>
为什么不直接包含 poppler-document.h?那么这些目录是如何指定的呢?