2014-08-06 19:23:00 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
|
|
|
|
#include "cmCPackIFWInstaller.h"
|
|
|
|
|
|
|
|
#include "cmCPackIFWGenerator.h"
|
|
|
|
|
|
|
|
#include <CPack/cmCPackLog.h>
|
|
|
|
|
|
|
|
#include <cmGeneratedFileStream.h>
|
2015-07-16 22:53:57 +03:00
|
|
|
#include <cmXMLWriter.h>
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
#ifdef cmCPackLogger
|
|
|
|
# undef cmCPackLogger
|
|
|
|
#endif
|
|
|
|
#define cmCPackLogger(logType, msg) \
|
|
|
|
do { \
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream cmCPackLog_msg; \
|
2014-08-06 19:23:00 +04:00
|
|
|
cmCPackLog_msg << msg; \
|
|
|
|
if(Generator) { \
|
|
|
|
Generator->Logger->Log(logType, __FILE__, __LINE__, \
|
|
|
|
cmCPackLog_msg.str().c_str()); \
|
|
|
|
} \
|
|
|
|
} while ( 0 )
|
|
|
|
|
|
|
|
cmCPackIFWInstaller::cmCPackIFWInstaller() :
|
|
|
|
Generator(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cmCPackIFWInstaller::GetOption(const std::string &op) const
|
|
|
|
{
|
|
|
|
return Generator ? Generator->GetOption(op) : 0;
|
|
|
|
}
|
|
|
|
|
2014-10-05 12:52:57 +04:00
|
|
|
bool cmCPackIFWInstaller::IsOn(const std::string &op) const
|
|
|
|
{
|
|
|
|
return Generator ? Generator->IsOn(op) : false;
|
|
|
|
}
|
|
|
|
|
2015-04-27 17:02:49 +03:00
|
|
|
bool cmCPackIFWInstaller::IsVersionLess(const char *version)
|
|
|
|
{
|
|
|
|
return Generator ? Generator->IsVersionLess(version) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCPackIFWInstaller::IsVersionGreater(const char *version)
|
|
|
|
{
|
|
|
|
return Generator ? Generator->IsVersionGreater(version) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCPackIFWInstaller::IsVersionEqual(const char *version)
|
|
|
|
{
|
|
|
|
return Generator ? Generator->IsVersionEqual(version) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-06 19:23:00 +04:00
|
|
|
void cmCPackIFWInstaller::ConfigureFromOptions()
|
|
|
|
{
|
|
|
|
// Name;
|
2014-08-12 22:44:02 +04:00
|
|
|
if (const char* optIFW_PACKAGE_NAME =
|
|
|
|
this->GetOption("CPACK_IFW_PACKAGE_NAME"))
|
2014-08-06 19:23:00 +04:00
|
|
|
{
|
2014-08-12 22:44:02 +04:00
|
|
|
Name = optIFW_PACKAGE_NAME;
|
|
|
|
}
|
|
|
|
else if (const char* optPACKAGE_NAME =
|
|
|
|
this->GetOption("CPACK_PACKAGE_NAME"))
|
|
|
|
{
|
|
|
|
Name = optPACKAGE_NAME;
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Name = "Your package";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Title;
|
|
|
|
if (const char* optIFW_PACKAGE_TITLE =
|
|
|
|
GetOption("CPACK_IFW_PACKAGE_TITLE"))
|
|
|
|
{
|
|
|
|
Title = optIFW_PACKAGE_TITLE;
|
|
|
|
}
|
|
|
|
else if (const char* optPACKAGE_DESCRIPTION_SUMMARY =
|
|
|
|
GetOption("CPACK_PACKAGE_DESCRIPTION_SUMMARY"))
|
|
|
|
{
|
|
|
|
Title = optPACKAGE_DESCRIPTION_SUMMARY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Title = "Your package description";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Version;
|
|
|
|
if (const char* option = GetOption("CPACK_PACKAGE_VERSION"))
|
|
|
|
{
|
|
|
|
Version = option;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Version = "1.0.0";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Publisher
|
|
|
|
if(const char* optIFW_PACKAGE_PUBLISHER =
|
|
|
|
GetOption("CPACK_IFW_PACKAGE_PUBLISHER"))
|
|
|
|
{
|
|
|
|
Publisher = optIFW_PACKAGE_PUBLISHER;
|
|
|
|
}
|
|
|
|
else if(const char* optPACKAGE_VENDOR = GetOption("CPACK_PACKAGE_VENDOR"))
|
|
|
|
{
|
|
|
|
Publisher = optPACKAGE_VENDOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ProductUrl
|
|
|
|
if(const char* option = GetOption("CPACK_IFW_PRODUCT_URL"))
|
|
|
|
{
|
|
|
|
ProductUrl = option;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ApplicationIcon
|
|
|
|
if(const char* option = GetOption("CPACK_IFW_PACKAGE_ICON"))
|
|
|
|
{
|
|
|
|
if(cmSystemTools::FileExists(option))
|
|
|
|
{
|
|
|
|
InstallerApplicationIcon = option;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: implement warning
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WindowIcon
|
|
|
|
if(const char* option = GetOption("CPACK_IFW_PACKAGE_WINDOW_ICON"))
|
|
|
|
{
|
|
|
|
if(cmSystemTools::FileExists(option))
|
|
|
|
{
|
|
|
|
InstallerWindowIcon = option;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: implement warning
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Logo
|
|
|
|
if(const char* option = GetOption("CPACK_IFW_PACKAGE_LOGO"))
|
|
|
|
{
|
|
|
|
if(cmSystemTools::FileExists(option))
|
|
|
|
{
|
|
|
|
Logo = option;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: implement warning
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-27 17:02:49 +03:00
|
|
|
// Start menu
|
|
|
|
if (const char* optIFW_START_MENU_DIR =
|
|
|
|
this->GetOption("CPACK_IFW_PACKAGE_START_MENU_DIRECTORY"))
|
|
|
|
{
|
|
|
|
StartMenuDir = optIFW_START_MENU_DIR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
StartMenuDir = Name;
|
|
|
|
}
|
|
|
|
|
2014-08-06 19:23:00 +04:00
|
|
|
// Default target directory for installation
|
|
|
|
if (const char* optIFW_TARGET_DIRECTORY =
|
|
|
|
GetOption("CPACK_IFW_TARGET_DIRECTORY"))
|
|
|
|
{
|
|
|
|
TargetDir = optIFW_TARGET_DIRECTORY;
|
|
|
|
}
|
|
|
|
else if (const char *optPACKAGE_INSTALL_DIRECTORY =
|
|
|
|
GetOption("CPACK_PACKAGE_INSTALL_DIRECTORY"))
|
|
|
|
{
|
|
|
|
TargetDir = "@ApplicationsDir@/";
|
|
|
|
TargetDir += optPACKAGE_INSTALL_DIRECTORY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TargetDir = "@RootDir@/usr/local";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default target directory for installation with administrator rights
|
|
|
|
if (const char* option = GetOption("CPACK_IFW_ADMIN_TARGET_DIRECTORY"))
|
|
|
|
{
|
|
|
|
AdminTargetDir = option;
|
|
|
|
}
|
2014-10-05 12:52:57 +04:00
|
|
|
|
|
|
|
// Repositories
|
|
|
|
Repositories.clear();
|
|
|
|
RepositoryStruct Repo;
|
2015-04-27 17:02:49 +03:00
|
|
|
if(const char *site = this->GetOption("CPACK_DOWNLOAD_SITE"))
|
2014-10-05 12:52:57 +04:00
|
|
|
{
|
|
|
|
Repo.Url = site;
|
|
|
|
Repositories.push_back(Repo);
|
|
|
|
}
|
|
|
|
if(const char *RepoAllStr = this->GetOption("CPACK_IFW_REPOSITORIES_ALL"))
|
|
|
|
{
|
|
|
|
std::vector<std::string> RepoAllVector;
|
|
|
|
cmSystemTools::ExpandListArgument(RepoAllStr,
|
|
|
|
RepoAllVector);
|
|
|
|
for(std::vector<std::string>::iterator
|
|
|
|
rit = RepoAllVector.begin(); rit != RepoAllVector.end(); ++rit)
|
|
|
|
{
|
|
|
|
std::string prefix = "CPACK_IFW_REPOSITORY_"
|
|
|
|
+ cmsys::SystemTools::UpperCase(*rit)
|
|
|
|
+ "_";
|
|
|
|
// Url
|
|
|
|
if (const char* url = GetOption(prefix + "URL"))
|
|
|
|
{
|
|
|
|
Repo.Url = url;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Repo.Url = "";
|
|
|
|
}
|
|
|
|
// Enabled
|
|
|
|
if (IsOn(prefix + "DISABLED"))
|
|
|
|
{
|
|
|
|
Repo.Enabled = "0";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Repo.Enabled = "";
|
|
|
|
}
|
|
|
|
// Username
|
|
|
|
if (const char* username = GetOption(prefix + "USERNAME"))
|
|
|
|
{
|
|
|
|
Repo.Username = username;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Repo.Username = "";
|
|
|
|
}
|
|
|
|
// Password
|
|
|
|
if (const char* password = GetOption(prefix + "PASSWORD"))
|
|
|
|
{
|
|
|
|
Repo.Password = password;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Repo.Password = "";
|
|
|
|
}
|
|
|
|
// DisplayName
|
|
|
|
if (const char* displayName = GetOption(prefix + "DISPLAY_NAME"))
|
|
|
|
{
|
|
|
|
Repo.DisplayName = displayName;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Repo.DisplayName = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!Repo.Url.empty())
|
|
|
|
{
|
|
|
|
Repositories.push_back(Repo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-27 17:02:49 +03:00
|
|
|
|
|
|
|
// Maintenance tool
|
|
|
|
if(const char* optIFW_MAINTENANCE_TOOL =
|
|
|
|
this->GetOption("CPACK_IFW_PACKAGE_MAINTENANCE_TOOL_NAME"))
|
|
|
|
{
|
|
|
|
MaintenanceToolName = optIFW_MAINTENANCE_TOOL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Maintenance tool ini file
|
|
|
|
if(const char* optIFW_MAINTENANCE_TOOL_INI =
|
|
|
|
this->GetOption("CPACK_IFW_PACKAGE_MAINTENANCE_TOOL_INI_FILE"))
|
|
|
|
{
|
|
|
|
MaintenanceToolIniFile = optIFW_MAINTENANCE_TOOL_INI;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow non-ASCII characters
|
|
|
|
if(this->GetOption("CPACK_IFW_PACKAGE_ALLOW_NON_ASCII_CHARACTERS"))
|
|
|
|
{
|
|
|
|
if(IsOn("CPACK_IFW_PACKAGE_ALLOW_NON_ASCII_CHARACTERS"))
|
|
|
|
{
|
|
|
|
AllowNonAsciiCharacters = "true";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AllowNonAsciiCharacters = "false";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Space in path
|
|
|
|
if(this->GetOption("CPACK_IFW_PACKAGE_ALLOW_SPACE_IN_PATH"))
|
|
|
|
{
|
|
|
|
if(IsOn("CPACK_IFW_PACKAGE_ALLOW_SPACE_IN_PATH"))
|
|
|
|
{
|
|
|
|
AllowSpaceInPath = "true";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AllowSpaceInPath = "false";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Control script
|
|
|
|
if(const char* optIFW_CONTROL_SCRIPT =
|
|
|
|
this->GetOption("CPACK_IFW_PACKAGE_CONTROL_SCRIPT"))
|
|
|
|
{
|
|
|
|
ControlScript = optIFW_CONTROL_SCRIPT;
|
|
|
|
}
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCPackIFWInstaller::GenerateInstallerFile()
|
|
|
|
{
|
|
|
|
// Lazy directory initialization
|
|
|
|
if(Directory.empty() && Generator)
|
|
|
|
{
|
|
|
|
Directory = Generator->toplevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Output stream
|
2015-07-16 22:53:57 +03:00
|
|
|
cmGeneratedFileStream fout((Directory + "/config/config.xml").data());
|
|
|
|
cmXMLWriter xout(fout);
|
2014-08-06 19:23:00 +04:00
|
|
|
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.StartDocument();
|
2015-04-27 17:02:49 +03:00
|
|
|
|
|
|
|
WriteGeneratedByToStrim(xout);
|
|
|
|
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.StartElement("Installer");
|
2014-08-06 19:23:00 +04:00
|
|
|
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("Name", Name);
|
|
|
|
xout.Element("Version", Version);
|
|
|
|
xout.Element("Title", Title);
|
2014-08-06 19:23:00 +04:00
|
|
|
|
|
|
|
if(!Publisher.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("Publisher", Publisher);
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!ProductUrl.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("ProductUrl", ProductUrl);
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ApplicationIcon
|
|
|
|
if(!InstallerApplicationIcon.empty())
|
|
|
|
{
|
|
|
|
std::string name =
|
|
|
|
cmSystemTools::GetFilenameName(InstallerApplicationIcon);
|
|
|
|
std::string path = Directory + "/config/" + name;
|
|
|
|
name = cmSystemTools::GetFilenameWithoutExtension(name);
|
|
|
|
cmsys::SystemTools::CopyFileIfDifferent(
|
|
|
|
InstallerApplicationIcon.data(), path.data());
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("InstallerApplicationIcon", name);
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// WindowIcon
|
|
|
|
if(!InstallerWindowIcon.empty())
|
|
|
|
{
|
|
|
|
std::string name = cmSystemTools::GetFilenameName(InstallerWindowIcon);
|
|
|
|
std::string path = Directory + "/config/" + name;
|
|
|
|
cmsys::SystemTools::CopyFileIfDifferent(
|
|
|
|
InstallerWindowIcon.data(), path.data());
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("InstallerWindowIcon", name);
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Logo
|
|
|
|
if(!Logo.empty())
|
|
|
|
{
|
|
|
|
std::string name = cmSystemTools::GetFilenameName(Logo);
|
|
|
|
std::string path = Directory + "/config/" + name;
|
|
|
|
cmsys::SystemTools::CopyFileIfDifferent(Logo.data(), path.data());
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("Logo", name);
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
2015-04-27 17:02:49 +03:00
|
|
|
// Start menu
|
|
|
|
if(!IsVersionLess("2.0"))
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("StartMenuDir", StartMenuDir);
|
2015-04-27 17:02:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Target dir
|
2014-08-06 19:23:00 +04:00
|
|
|
if(!TargetDir.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("TargetDir", TargetDir);
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
2015-04-27 17:02:49 +03:00
|
|
|
// Admin target dir
|
2014-08-06 19:23:00 +04:00
|
|
|
if(!AdminTargetDir.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("AdminTargetDir", AdminTargetDir);
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
2014-10-05 12:52:57 +04:00
|
|
|
// Remote repositories
|
|
|
|
if (!Repositories.empty())
|
2014-08-06 19:23:00 +04:00
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.StartElement("RemoteRepositories");
|
2014-10-05 12:52:57 +04:00
|
|
|
for(std::vector<RepositoryStruct>::iterator
|
|
|
|
rit = Repositories.begin(); rit != Repositories.end(); ++rit)
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.StartElement("Repository");
|
2014-10-05 12:52:57 +04:00
|
|
|
// Url
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("Url", rit->Url);
|
2014-10-05 12:52:57 +04:00
|
|
|
// Enabled
|
|
|
|
if(!rit->Enabled.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("Enabled", rit->Enabled);
|
2014-10-05 12:52:57 +04:00
|
|
|
}
|
|
|
|
// Username
|
|
|
|
if(!rit->Username.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("Username", rit->Username);
|
2014-10-05 12:52:57 +04:00
|
|
|
}
|
|
|
|
// Password
|
|
|
|
if(!rit->Password.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("Password", rit->Password);
|
2014-10-05 12:52:57 +04:00
|
|
|
}
|
|
|
|
// DisplayName
|
|
|
|
if(!rit->DisplayName.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("DisplayName", rit->DisplayName);
|
2014-10-05 12:52:57 +04:00
|
|
|
}
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.EndElement();
|
2014-10-05 12:52:57 +04:00
|
|
|
}
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.EndElement();
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
2015-04-27 17:02:49 +03:00
|
|
|
// Maintenance tool
|
|
|
|
if(!IsVersionLess("2.0") && !MaintenanceToolName.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("MaintenanceToolName", MaintenanceToolName);
|
2015-04-27 17:02:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Maintenance tool ini file
|
|
|
|
if(!IsVersionLess("2.0") && !MaintenanceToolIniFile.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("MaintenanceToolIniFile", MaintenanceToolIniFile);
|
2015-04-27 17:02:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Different allows
|
|
|
|
if(IsVersionLess("2.0"))
|
|
|
|
{
|
|
|
|
// CPack IFW default policy
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Comment("CPack IFW default policy for QtIFW less 2.0");
|
|
|
|
xout.Element("AllowNonAsciiCharacters", "true");
|
|
|
|
xout.Element("AllowSpaceInPath", "true");
|
2015-04-27 17:02:49 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!AllowNonAsciiCharacters.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("AllowNonAsciiCharacters", AllowNonAsciiCharacters);
|
2015-04-27 17:02:49 +03:00
|
|
|
}
|
|
|
|
if(!AllowSpaceInPath.empty())
|
|
|
|
{
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("AllowSpaceInPath", AllowSpaceInPath);
|
2015-04-27 17:02:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Control script (copy to config dir)
|
|
|
|
if(!IsVersionLess("2.0") && !ControlScript.empty())
|
|
|
|
{
|
|
|
|
std::string name = cmSystemTools::GetFilenameName(ControlScript);
|
|
|
|
std::string path = Directory + "/config/" + name;
|
|
|
|
cmsys::SystemTools::CopyFileIfDifferent(ControlScript.data(), path.data());
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.Element("ControlScript", name);
|
2015-04-27 17:02:49 +03:00
|
|
|
}
|
2014-08-06 19:23:00 +04:00
|
|
|
|
2015-07-16 22:53:57 +03:00
|
|
|
xout.EndElement();
|
|
|
|
xout.EndDocument();
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmCPackIFWInstaller::GeneratePackageFiles()
|
|
|
|
{
|
|
|
|
if (Packages.empty() || Generator->IsOnePackage())
|
|
|
|
{
|
|
|
|
// Generate default package
|
|
|
|
cmCPackIFWPackage package;
|
|
|
|
package.Generator = Generator;
|
|
|
|
package.Installer = this;
|
2014-08-12 22:44:02 +04:00
|
|
|
// Check package group
|
|
|
|
if (const char* option = GetOption("CPACK_IFW_PACKAGE_GROUP"))
|
|
|
|
{
|
|
|
|
package.ConfigureFromGroup(option);
|
|
|
|
package.ForcedInstallation = "true";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
package.ConfigureFromOptions();
|
|
|
|
}
|
2014-08-06 19:23:00 +04:00
|
|
|
package.GeneratePackageFile();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate packages meta information
|
|
|
|
for(PackagesMap::iterator pit = Packages.begin();
|
|
|
|
pit != Packages.end(); ++pit)
|
|
|
|
{
|
|
|
|
cmCPackIFWPackage* package = pit->second;
|
|
|
|
package->GeneratePackageFile();
|
2015-04-27 17:02:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-16 22:53:57 +03:00
|
|
|
void cmCPackIFWInstaller::WriteGeneratedByToStrim(cmXMLWriter &xout)
|
2015-04-27 17:02:49 +03:00
|
|
|
{
|
|
|
|
if(Generator) Generator->WriteGeneratedByToStrim(xout);
|
2014-08-06 19:23:00 +04:00
|
|
|
}
|