0

我目前正在将 Qt 项目从基于 .pro 文件转换为基于 Visual Studio。

在原始 .pro 文件中,我使用了以下内容

LIBSTR = '\\"$${LIBS}\\"'
DEFINES += LIBRARIES=\"$${LIBSTR}\"

这让我可以看到我的应用程序中使用了哪些库。

我想在 Visual Studio 中复制它,但看不到如何做到这一点。

4

1 回答 1

0

1)添加configure.h到项目中

#pragma once
#define LIBRARIES TEXT("")

2)添加$${LIBS}到该Project properties -> Linker -> Input -> Additional Dependencies部分。

3)添加到Project properties -> Build Events -> Pre-Build Event一个脚本,如:

cscript /nologo configure.js $(ProjectPath) $(ConfigurationName) $(PlatformName)

配置.js:

var proj = WScript.Arguments(0);
var conf = WScript.Arguments(1);
var platf = WScript.Arguments(2);
var configFile = "configure.h";

try {
    var doc = new ActiveXObject("msxml2.DOMDocument.6.0");
    doc.async = false;
    doc.resolveExternals = false;
    doc.validateOnParse = false;
    doc.load(proj);

    var node = doc.selectSingleNode("//Configuration[@Name=\""+conf+"|"+platf+"\"]/Tool[@Name=\"VCLinkerTool\"]");
    var attr = node.attributes.getNamedItem("AdditionalDependencies");
    var libStr = attr ? attr.value : "";

    var fso = new ActiveXObject("Scripting.FileSystemObject");
    var aFile = fso.GetFile(".\\" + configFile);
    var fStream = aFile.OpenAsTextStream(1);

    var re = new RegExp("^\\s*#\\s*define\\s+LIBRARIES\\s+");
    var done = false;
    var text = "";
    while (!fStream.AtEndOfStream) {
        var aStr = fStream.ReadLine();
        if (!done && re.test(aStr)) {
            aStr = "#define LIBRARIES TEXT(\"" + libStr.replace(/(\\|")/g, "\\$1") + "\")";
            done = true;
        }
        text += aStr + "\n";
    }
    fStream.Close();

    fStream = aFile.OpenAsTextStream(2);
    fStream.Write(text);
    fStream.Close();
} catch (e) {
    WScript.Echo("Error:");
    WScript.Echo(e.description);
    WScript.Quit(1);
}

WScript.Echo("Done");
WScript.Quit(0);

然后在您开始构建之后,该configure.h文件将被更新,LIBRARIES并将包含您为当前构建配置和平台定义的所有库。

于 2014-04-22T11:48:54.287 回答