gpt4 book ai didi

c++ - lib(发布)或 libd(调试),Qt 可以为我解决这个问题吗?

转载 作者:行者123 更新时间:2023-11-28 05:45:44 24 4
gpt4 key购买 nike

Plug & Paint Example .pro呈现以下内容:

LIBS           = -Lplugins -lpnp_basictools

if(!debug_and_release|build_pass):CONFIG(debug, debug|release) {
mac:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)_debug
win32:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)d
}

对于这种特殊情况,在 Debug模式下将 d 附加到 lib 名称,pnp_basictools 变为 pnp_basictoolsd。但它不能很好地扩展,即:

LIBS           = -Lplugins -lplugin_1 -lplugin_2 -lplugin_3

if(!debug_and_release|build_pass):CONFIG(debug, debug|release)
win32:LIBS = $$member(LIBS, 0) $$member(LIBS, 1)d

似乎没有将 d 附加到 plugin_2plugin_3

那么,我可以要求另一种方法在 Debug模式下将 d 添加到 lib 名称中吗?

也提到了这个问题here .

最佳答案

$$member(X, pos)返回列表变量 X 位置 pos 处的项目。因此,您找到的代码仅处理该列表中的 2 个元素(0 => -Lplugins 和 1 => -lpnp_basictools)。

有一个for loop这可以帮助您处理列表的所有元素,但您可以“简单地”使用带有 ~= operator 的正则表达式:

win32:LIBS ~= s/-l(.*)/-l\1d/g

关于c++ - lib(发布)或 libd(调试),Qt 可以为我解决这个问题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36253715/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com