0

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.

Kiran Raut
  • 51
  • 4

1 Answers1

0

How can i have two different config file at same time?

A config file isn't needed to install offline or online...

It is possible to install offline by including the files to install in the ressources (use QRessource .qrc) or online by downloading them using QtNetwork.

But it doesn't make sense to have both at the same time.

Why would you need to download files that you already have...

el famoso
  • 150
  • 1
  • 8