I want create online installer without data embedded in it. Documentation says "Use the -n parameter of the binarycreator tool and only add the root component to the installer". What do you mean by root component. I am using below code to execute binarycreator tool.
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);
when i provide repository directory it works fine. But i dont want to embed the data init. installer should download it from online repository.