使用预处理器指令定义命令行选项

发布于 2024-09-02 01:39:38 字数 236 浏览 2 评论 0原文

如果我想仅在设置了特定的 #define 时才向构建添加新的 .lib,我该怎么做?

在 MSVC++ 2008“属性页”中,您只需添加: Config Properties ->链接器->输入->附加依赖项,但我希望如果设置了类似#define COMPILE_WITH_DETOURS 的内容,那么特定的库将被添加到依赖项中,否则它将被删除。

If I wanted to add, let's say, a new .lib to the build only if a particular #define was set, how would I do that?

In the MSVC++ 2008 "Property Pages", you would simply add: Config Properties -> Linker -> Input -> Additional Dependencies, but I would like it if something like #define COMPILE_WITH_DETOURS was set, then the particular library would be added to the dependencies, otherwise it would be removed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清晨说晚安 2024-09-09 01:39:38

您可以使用 #pragma comment 在您的源文件之一中。

例如,要仅在定义了 COMPILE_WITH_DETOURS 时链接“detours.lib”库,您可以使用:(

#ifdef COMPILE_WITH_DETOURS
#    pragma comment(lib, "detours.lib")
#endif

这是 Microsoft Visual C++ 特有的且不可移植)

You can set some linker options by using #pragma comment in one of your source files.

For example, to link against a 'detours.lib' library only if COMPILE_WITH_DETOURS is defined, you can use:

#ifdef COMPILE_WITH_DETOURS
#    pragma comment(lib, "detours.lib")
#endif

(this is specific to Microsoft Visual C++ and is not portable)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文