Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个用于登录 boost 的库。我有一个关于安装的问题。如何安装它?这是最新版本。有 3 个文件夹:boost、doc、libs。如何在不重新编译所有 boost 的情况下安装这个库?
在最简单的情况下,您需要做两件事:将 /boost 添加到您的编译器包含搜索路径,并将 /libs/log/src 中的所有 *.cpp 文件添加到您的项目中,将它们与您的应用程序一起编译。
注意:只要您的应用程序仅包含主可执行文件,这将正常工作。如果您有自己的其他共享库(也使用 Boost.Log),最好将 /boost 和 /libs 复制(或链接)到您的 Boost 源树中并从那里重建它。