mirror of
https://github.com/reactos/CMake.git
synced 2024-12-16 08:07:29 +00:00
83ec8c3593
Details: ========== - New cpack_add_component, cpack_add_component_group, and cpack_add_install_type "commands" defined as macros in the CPack module. - Documentation for all of the variables and commands in the CPack module. - Added get_cmake_property(... COMPONENTS) to CMake to ask for the names of all components. Used in the CPack module to automatically build component-based installers. (Set CPACK_MONOLITHIC_INSTALL to turn off component-based installation). - A group can declare its PARENT_GROUP, to build an arbitrary hierarchy of groups. - New CPack command cpack_configure_downloads, which creates an installer that downloads only the selected components on-the-fly. Those components marked DOWNLOADED will be separate packages downloaded on-the-fly (or, all packages can be marked as such with the ALL option to cpack_configure_downloads). Individual components are compressed with ZIP at installer-creation time and downloaded/uncompressed by the installer as needed. This feature is only available on Windows with NSIS at the moment. - NSIS installers can install themselves and enable the "Change" button in Add/Remove programs, allowing users to go back and install or remove components. This can be disabled through cpack_configure_downloads, because it's only really useful is most of the application's functionality is in downloaded components. - Bug fix: automatically install everything whose COMPONENT was not specified (it's a hidden, required group) - Bug fix: fixed removal of components when re-running the NSIS installer and unchecking components - Bug fix: NSIS installers now only install/remove the minimal number of files when re-run to update the installation (or by clicking "Change" in Add/Remove programs)
82 lines
2.1 KiB
C++
82 lines
2.1 KiB
C++
/*=========================================================================
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
Module: $RCSfile$
|
|
Language: C++
|
|
Date: $Date$
|
|
Version: $Revision$
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
=========================================================================*/
|
|
#include "cmGetCMakePropertyCommand.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
// cmGetCMakePropertyCommand
|
|
bool cmGetCMakePropertyCommand
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
|
{
|
|
if(args.size() < 2 )
|
|
{
|
|
this->SetError("called with incorrect number of arguments");
|
|
return false;
|
|
}
|
|
|
|
std::vector<std::string>::size_type cc;
|
|
std::string variable = args[0];
|
|
std::string output = "NOTFOUND";
|
|
|
|
if ( args[1] == "VARIABLES")
|
|
{
|
|
int cacheonly = 0;
|
|
std::vector<std::string> vars = this->Makefile->GetDefinitions(cacheonly);
|
|
for ( cc = 0; cc < vars.size(); cc ++ )
|
|
{
|
|
if ( cc > 0 )
|
|
{
|
|
output += ";";
|
|
}
|
|
output += vars[cc];
|
|
}
|
|
}
|
|
else if ( args[1] == "MACROS" )
|
|
{
|
|
this->Makefile->GetListOfMacros(output);
|
|
}
|
|
else if ( args[1] == "COMPONENTS" )
|
|
{
|
|
const std::set<cmStdString>* components
|
|
= this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
|
|
->GetInstallComponents();
|
|
std::set<cmStdString>::const_iterator compIt;
|
|
output = "";
|
|
for (compIt = components->begin(); compIt != components->end(); ++compIt)
|
|
{
|
|
if (compIt != components->begin())
|
|
{
|
|
output += ";";
|
|
}
|
|
output += *compIt;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
const char *prop =
|
|
this->Makefile->GetCMakeInstance()->GetProperty(args[1].c_str());
|
|
if (prop)
|
|
{
|
|
output = prop;
|
|
}
|
|
}
|
|
this->Makefile->AddDefinition(variable.c_str(), output.c_str());
|
|
|
|
return true;
|
|
}
|
|
|