我想创建没有嵌入数据的在线安装程序。文档说“使用 binarycreator 工具的 -n 参数并且只将根组件添加到安装程序”。根组件是什么意思。我正在使用下面的代码来执行 binarycreator 工具。
Process *build = new QProcess(this);
QStringList arguments;
QString file_name = m_parent->GetOutPutPageInstance()->GetFileName();
arguments << "--online-only" << "-c" << ConfFilePath << file_name;
build->execute(bincreatorExe,arguments);
当我提供存储库目录时,它工作正常。但我不想嵌入数据初始化。安装程序应该从在线存储库下载它。