2008-02-29 23:28:46 +03:00
|
|
|
#include "cmPolicies.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSourceFile.h"
|
2008-03-08 17:13:13 +03:00
|
|
|
#include "cmVersion.h"
|
2008-02-29 23:28:46 +03:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <queue>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
const char* cmPolicies::PolicyStatusNames[] = {
|
|
|
|
"OLD", "WARN", "NEW", "REQUIRED_IF_USED", "REQUIRED_ALWAYS"
|
|
|
|
};
|
|
|
|
|
|
|
|
class cmPolicy
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmPolicy(cmPolicies::PolicyID iD,
|
|
|
|
const char *idString,
|
|
|
|
const char *shortDescription,
|
|
|
|
const char *longDescription,
|
|
|
|
unsigned int majorVersionIntroduced,
|
|
|
|
unsigned int minorVersionIntroduced,
|
|
|
|
unsigned int patchVersionIntroduced,
|
|
|
|
cmPolicies::PolicyStatus status)
|
|
|
|
{
|
|
|
|
if (!idString || !shortDescription || ! longDescription)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Attempt to define a policy without "
|
|
|
|
"all parameters being specified!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->ID = iD;
|
|
|
|
this->IDString = idString;
|
|
|
|
this->ShortDescription = shortDescription;
|
|
|
|
this->LongDescription = longDescription;
|
|
|
|
this->MajorVersionIntroduced = majorVersionIntroduced;
|
|
|
|
this->MinorVersionIntroduced = minorVersionIntroduced;
|
|
|
|
this->PatchVersionIntroduced = patchVersionIntroduced;
|
|
|
|
this->Status = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetVersionString()
|
|
|
|
{
|
|
|
|
cmOStringStream error;
|
|
|
|
error << this->MajorVersionIntroduced << "." <<
|
|
|
|
this->MinorVersionIntroduced << "." <<
|
|
|
|
this->PatchVersionIntroduced;
|
|
|
|
return error.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsPolicyNewerThan(unsigned int majorV,
|
|
|
|
unsigned int minorV,
|
|
|
|
unsigned int patchV)
|
|
|
|
{
|
|
|
|
if (majorV < this->MajorVersionIntroduced)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (majorV > this->MajorVersionIntroduced)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (minorV < this->MinorVersionIntroduced)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (minorV > this->MinorVersionIntroduced)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return (patchV < this->PatchVersionIntroduced);
|
|
|
|
}
|
|
|
|
|
|
|
|
cmPolicies::PolicyID ID;
|
|
|
|
std::string IDString;
|
|
|
|
std::string ShortDescription;
|
|
|
|
std::string LongDescription;
|
|
|
|
unsigned int MajorVersionIntroduced;
|
|
|
|
unsigned int MinorVersionIntroduced;
|
|
|
|
unsigned int PatchVersionIntroduced;
|
|
|
|
cmPolicies::PolicyStatus Status;
|
|
|
|
};
|
|
|
|
|
|
|
|
cmPolicies::cmPolicies()
|
|
|
|
{
|
|
|
|
// define all the policies
|
2008-03-07 23:30:35 +03:00
|
|
|
this->DefinePolicy(
|
2008-03-13 18:38:46 +03:00
|
|
|
CMP0000, "CMP0000",
|
2008-03-08 17:13:13 +03:00
|
|
|
"A policy version number must be specified.",
|
|
|
|
"CMake requires that projects specify the version of CMake to which "
|
|
|
|
"they have been written. "
|
|
|
|
"This policy has been put in place to help CMake maintain backwards "
|
|
|
|
"compatibility with existing projects while allowing it to evolve "
|
|
|
|
"more rapidly.\n"
|
|
|
|
"The easiest way to specify a policy version number is to "
|
|
|
|
"call the cmake_policy command at the top of your CMakeLists file:\n"
|
|
|
|
" cmake_policy(VERSION <major>.<minor>)\n"
|
|
|
|
"where <major>.<minor> is the version of CMake you want to support. "
|
|
|
|
"The cmake_minimum_required command may also be used; see its "
|
|
|
|
"documentation for details.",
|
2008-03-07 23:30:35 +03:00
|
|
|
2,6,0, cmPolicies::WARN
|
|
|
|
);
|
2008-02-29 23:28:46 +03:00
|
|
|
|
2008-03-07 23:30:35 +03:00
|
|
|
this->DefinePolicy(
|
2008-03-13 18:38:46 +03:00
|
|
|
CMP0001, "CMP0001",
|
2008-03-07 23:30:35 +03:00
|
|
|
"CMAKE_BACKWARDS_COMPATIBILITY should no longer be used.",
|
|
|
|
"The OLD behavior is to check CMAKE_BACKWARDS_COMPATIBILITY and present "
|
|
|
|
"it to the user. "
|
|
|
|
"The NEW behavior is to ignore CMAKE_BACKWARDS_COMPATIBILITY "
|
|
|
|
"completely.\n"
|
|
|
|
"In CMake 2.4 and below the variable CMAKE_BACKWARDS_COMPATIBILITY was "
|
|
|
|
"used to request compatibility with earlier versions of CMake. "
|
|
|
|
"In CMake 2.6 and above all compatibility issues are handled by policies "
|
|
|
|
"and the cmake_policy command. "
|
|
|
|
"However, CMake must still check CMAKE_BACKWARDS_COMPATIBILITY for "
|
|
|
|
"projects written for CMake 2.4 and below.",
|
|
|
|
2,6,0, cmPolicies::WARN
|
|
|
|
);
|
2008-03-05 19:41:25 +03:00
|
|
|
|
2008-03-07 23:30:35 +03:00
|
|
|
this->DefinePolicy(
|
2008-03-13 18:38:46 +03:00
|
|
|
CMP0002, "CMP0002",
|
2008-03-08 00:36:57 +03:00
|
|
|
"Logical target names must be globally unique.",
|
|
|
|
"Targets names created with "
|
|
|
|
"add_executable, add_library, or add_custom_target "
|
|
|
|
"are logical build target names. "
|
|
|
|
"Logical target names must be globally unique because:\n"
|
|
|
|
" - Unique names may be referenced unambiguously both in CMake\n"
|
|
|
|
" code and on make tool command lines.\n"
|
|
|
|
" - Logical names are used by Xcode and VS IDE generators\n"
|
|
|
|
" to produce meaningful project names for the targets.\n"
|
|
|
|
"The logical name of executable and library targets does not "
|
|
|
|
"have to correspond to the physical file names built. "
|
|
|
|
"Consider using the OUTPUT_NAME target property to create two "
|
|
|
|
"targets with the same physical name while keeping logical "
|
|
|
|
"names distinct. "
|
|
|
|
"Custom targets must simply have globally unique names (unless one "
|
|
|
|
"uses the global property ALLOW_DUPLICATE_CUSTOM_TARGETS with a "
|
|
|
|
"Makefiles generator).",
|
2008-03-07 23:30:35 +03:00
|
|
|
2,6,0, cmPolicies::WARN
|
|
|
|
);
|
|
|
|
}
|
2008-02-29 23:28:46 +03:00
|
|
|
|
|
|
|
cmPolicies::~cmPolicies()
|
|
|
|
{
|
|
|
|
// free the policies
|
|
|
|
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator i
|
2008-03-02 17:03:33 +03:00
|
|
|
= this->Policies.begin();
|
|
|
|
for (;i != this->Policies.end(); ++i)
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
delete i->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmPolicies::DefinePolicy(cmPolicies::PolicyID iD,
|
|
|
|
const char *idString,
|
|
|
|
const char *shortDescription,
|
|
|
|
const char *longDescription,
|
|
|
|
unsigned int majorVersionIntroduced,
|
|
|
|
unsigned int minorVersionIntroduced,
|
|
|
|
unsigned int patchVersionIntroduced,
|
|
|
|
cmPolicies::PolicyStatus status)
|
|
|
|
{
|
|
|
|
// a policy must be unique and can only be defined once
|
2008-03-02 17:03:33 +03:00
|
|
|
if (this->Policies.find(iD) != this->Policies.end())
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Attempt to redefine a CMake policy for policy "
|
|
|
|
"ID ", this->GetPolicyIDString(iD).c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-03-02 17:03:33 +03:00
|
|
|
this->Policies[iD] = new cmPolicy(iD, idString,
|
2008-02-29 23:28:46 +03:00
|
|
|
shortDescription,
|
|
|
|
longDescription,
|
|
|
|
majorVersionIntroduced,
|
|
|
|
minorVersionIntroduced,
|
|
|
|
patchVersionIntroduced,
|
|
|
|
status);
|
|
|
|
this->PolicyStringMap[idString] = iD;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmPolicies::ApplyPolicyVersion(cmMakefile *mf,
|
|
|
|
const char *version)
|
|
|
|
{
|
|
|
|
std::string ver = "2.4.0";
|
|
|
|
|
|
|
|
if (version && strlen(version) > 0)
|
|
|
|
{
|
|
|
|
ver = version;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int majorVer = 2;
|
|
|
|
unsigned int minorVer = 0;
|
|
|
|
unsigned int patchVer = 0;
|
2008-03-06 01:26:32 +03:00
|
|
|
|
2008-02-29 23:28:46 +03:00
|
|
|
// parse the string
|
2008-03-06 02:20:20 +03:00
|
|
|
if(sscanf(ver.c_str(), "%u.%u.%u",
|
|
|
|
&majorVer, &minorVer, &patchVer) < 2)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2008-03-04 22:51:25 +03:00
|
|
|
|
2008-03-07 19:43:47 +03:00
|
|
|
// it is an error if the policy version is less than 2.4
|
|
|
|
if (majorVer < 2 || majorVer == 2 && minorVer < 4)
|
2008-03-11 17:29:56 +03:00
|
|
|
{
|
|
|
|
mf->IssueMessage(cmake::FATAL_ERROR,
|
2008-03-07 23:30:35 +03:00
|
|
|
"An attempt was made to set the policy version of CMake to something "
|
|
|
|
"earlier than \"2.4\". "
|
|
|
|
"In CMake 2.4 and below backwards compatibility was handled with the "
|
|
|
|
"CMAKE_BACKWARDS_COMPATIBILITY variable. "
|
|
|
|
"In order to get compatibility features supporting versions earlier "
|
2008-03-13 18:38:46 +03:00
|
|
|
"than 2.4 set policy CMP0001 to OLD to tell CMake to check the "
|
2008-03-07 23:30:35 +03:00
|
|
|
"CMAKE_BACKWARDS_COMPATIBILITY variable. "
|
|
|
|
"One way to so this is to set the policy version to 2.4 exactly."
|
|
|
|
);
|
2008-03-11 17:29:56 +03:00
|
|
|
}
|
2008-03-07 23:30:35 +03:00
|
|
|
|
2008-02-29 23:28:46 +03:00
|
|
|
// now loop over all the policies and set them as appropriate
|
2008-03-01 23:26:15 +03:00
|
|
|
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator i
|
2008-03-02 17:03:33 +03:00
|
|
|
= this->Policies.begin();
|
|
|
|
for (;i != this->Policies.end(); ++i)
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
if (i->second->IsPolicyNewerThan(majorVer,minorVer,patchVer))
|
|
|
|
{
|
|
|
|
if (!mf->SetPolicy(i->second->ID, cmPolicies::WARN))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!mf->SetPolicy(i->second->ID, cmPolicies::NEW))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// is this a valid status the listfile can set this policy to?
|
|
|
|
bool cmPolicies::IsValidPolicyStatus(cmPolicies::PolicyID id,
|
|
|
|
cmPolicies::PolicyStatus status)
|
|
|
|
{
|
2008-03-01 23:26:15 +03:00
|
|
|
// if they are setting a feature to anything other than OLD or WARN and the
|
|
|
|
// feature is not known about then that is an error
|
2008-03-02 17:03:33 +03:00
|
|
|
if (this->Policies.find(id) == this->Policies.end())
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
if (status == cmPolicies::WARN ||
|
|
|
|
status == cmPolicies::OLD)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
cmOStringStream error;
|
|
|
|
error <<
|
|
|
|
"Error: an attempt was made to enable the new behavior for " <<
|
|
|
|
"a new feature that is in a later version of CMake than "
|
|
|
|
"what you are runing, please upgrade to a newer version "
|
|
|
|
"of CMake.";
|
|
|
|
cmSystemTools::Error(error.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-01 23:26:15 +03:00
|
|
|
// now we know the feature is defined, so the only issue is if someone is
|
|
|
|
// setting it to WARN or OLD when the feature is REQUIRED_ALWAYS
|
2008-02-29 23:28:46 +03:00
|
|
|
if ((status == cmPolicies::WARN ||
|
|
|
|
status == cmPolicies::OLD) &&
|
2008-03-02 17:03:33 +03:00
|
|
|
this->Policies[id]->Status == cmPolicies::REQUIRED_ALWAYS)
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
cmOStringStream error;
|
|
|
|
error <<
|
|
|
|
"Error: an attempt was made to enable the old behavior for " <<
|
|
|
|
"a feature that is no longer supported. The feature in " <<
|
|
|
|
"question is feature " <<
|
|
|
|
id <<
|
|
|
|
" which had new behavior introduced in CMake version " <<
|
2008-03-02 17:03:33 +03:00
|
|
|
this->Policies[id]->GetVersionString() <<
|
2008-02-29 23:28:46 +03:00
|
|
|
" please either update your CMakeLists files to conform to " <<
|
|
|
|
"the new behavior " <<
|
|
|
|
"or use an older version of CMake that still supports " <<
|
|
|
|
"the old behavior. Run cmake --help-policies " <<
|
|
|
|
id << " for more information.";
|
|
|
|
cmSystemTools::Error(error.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// is this a valid status the listfile can set this policy to?
|
|
|
|
bool cmPolicies::IsValidUsedPolicyStatus(cmPolicies::PolicyID id,
|
|
|
|
cmPolicies::PolicyStatus status)
|
|
|
|
{
|
2008-03-01 23:26:15 +03:00
|
|
|
// if they are setting a feature to anything other than OLD or WARN and the
|
|
|
|
// feature is not known about then that is an error
|
2008-03-02 17:03:33 +03:00
|
|
|
if (this->Policies.find(id) == this->Policies.end())
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
if (status == cmPolicies::WARN ||
|
|
|
|
status == cmPolicies::OLD)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
cmOStringStream error;
|
|
|
|
error <<
|
|
|
|
"Error: an attempt was made to enable the new behavior for " <<
|
|
|
|
"a new feature that is in a later version of CMake than "
|
|
|
|
"what you are runing, please upgrade to a newer version "
|
|
|
|
"of CMake.";
|
|
|
|
cmSystemTools::Error(error.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-01 23:26:15 +03:00
|
|
|
// now we know the feature is defined, so the only issue is if someone is
|
|
|
|
// setting it to WARN or OLD when the feature is REQUIRED_ALWAYS
|
2008-02-29 23:28:46 +03:00
|
|
|
if ((status == cmPolicies::WARN ||
|
|
|
|
status == cmPolicies::OLD) &&
|
2008-03-02 17:03:33 +03:00
|
|
|
(this->Policies[id]->Status == cmPolicies::REQUIRED_ALWAYS ||
|
|
|
|
this->Policies[id]->Status == cmPolicies::REQUIRED_IF_USED))
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
cmOStringStream error;
|
|
|
|
error <<
|
|
|
|
"Error: an attempt was made to enable the old behavior for " <<
|
|
|
|
"a feature that is no longer supported. The feature in " <<
|
|
|
|
"question is feature " <<
|
|
|
|
id <<
|
|
|
|
" which had new behavior introduced in CMake version " <<
|
2008-03-02 17:03:33 +03:00
|
|
|
this->Policies[id]->GetVersionString() <<
|
2008-02-29 23:28:46 +03:00
|
|
|
" please either update your CMakeLists files to conform to " <<
|
|
|
|
"the new behavior " <<
|
|
|
|
"or use an older version of CMake that still supports " <<
|
|
|
|
"the old behavior. Run cmake --help-policies " <<
|
|
|
|
id << " for more information.";
|
|
|
|
cmSystemTools::Error(error.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmPolicies::GetPolicyID(const char *id, cmPolicies::PolicyID &pid)
|
|
|
|
{
|
|
|
|
if (!id || strlen(id) < 1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::map<std::string,cmPolicies::PolicyID>::iterator pos =
|
|
|
|
this->PolicyStringMap.find(id);
|
|
|
|
if (pos == this->PolicyStringMap.end())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
pid = pos->second;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmPolicies::GetPolicyIDString(cmPolicies::PolicyID pid)
|
|
|
|
{
|
|
|
|
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
|
2008-03-02 17:03:33 +03:00
|
|
|
this->Policies.find(pid);
|
|
|
|
if (pos == this->Policies.end())
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
return pos->second->IDString;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///! return a warning string for a given policy
|
|
|
|
std::string cmPolicies::GetPolicyWarning(cmPolicies::PolicyID id)
|
|
|
|
{
|
|
|
|
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
|
2008-03-02 17:03:33 +03:00
|
|
|
this->Policies.find(id);
|
|
|
|
if (pos == this->Policies.end())
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"Request for warning text for undefined policy!");
|
|
|
|
return "Request for warning text for undefined policy!";
|
|
|
|
}
|
|
|
|
|
2008-03-06 02:42:46 +03:00
|
|
|
cmOStringStream msg;
|
|
|
|
msg <<
|
2008-03-07 16:40:36 +03:00
|
|
|
"Policy " << pos->second->IDString << " is not set: "
|
2008-03-13 22:01:58 +03:00
|
|
|
"" << pos->second->ShortDescription << " "
|
2008-03-06 02:42:46 +03:00
|
|
|
"Run \"cmake --help-policy " << pos->second->IDString << "\" for "
|
2008-03-08 17:13:13 +03:00
|
|
|
"policy details. "
|
2008-03-07 16:40:36 +03:00
|
|
|
"Use the cmake_policy command to set the policy "
|
2008-03-06 02:42:46 +03:00
|
|
|
"and suppress this warning.";
|
|
|
|
return msg.str();
|
2008-02-29 23:28:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///! return an error string for when a required policy is unspecified
|
|
|
|
std::string cmPolicies::GetRequiredPolicyError(cmPolicies::PolicyID id)
|
|
|
|
{
|
|
|
|
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
|
2008-03-02 17:03:33 +03:00
|
|
|
this->Policies.find(id);
|
|
|
|
if (pos == this->Policies.end())
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"Request for error text for undefined policy!");
|
|
|
|
return "Request for warning text for undefined policy!";
|
|
|
|
}
|
|
|
|
|
|
|
|
cmOStringStream error;
|
2008-03-07 16:40:36 +03:00
|
|
|
error <<
|
|
|
|
"Policy " << pos->second->IDString << " is not set to NEW: "
|
2008-03-13 22:01:58 +03:00
|
|
|
"" << pos->second->ShortDescription << " "
|
2008-03-07 16:40:36 +03:00
|
|
|
"Run \"cmake --help-policy " << pos->second->IDString << "\" for "
|
2008-03-08 17:13:13 +03:00
|
|
|
"policy details. "
|
2008-03-07 16:40:36 +03:00
|
|
|
"CMake now requires this policy to be set to NEW by the project. "
|
|
|
|
"The policy may be set explicitly using the code\n"
|
|
|
|
" cmake_policy(SET " << pos->second->IDString << " NEW)\n"
|
|
|
|
"or by upgrading all policies with the code\n"
|
|
|
|
" cmake_policy(VERSION " << pos->second->GetVersionString() <<
|
|
|
|
") # or later\n"
|
|
|
|
"Run \"cmake --help-command cmake_policy\" for more information.";
|
2008-02-29 23:28:46 +03:00
|
|
|
return error.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
///! Get the default status for a policy
|
|
|
|
cmPolicies::PolicyStatus
|
|
|
|
cmPolicies::GetPolicyStatus(cmPolicies::PolicyID id)
|
|
|
|
{
|
|
|
|
// if the policy is not know then what?
|
|
|
|
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
|
2008-03-02 17:03:33 +03:00
|
|
|
this->Policies.find(id);
|
|
|
|
if (pos == this->Policies.end())
|
2008-02-29 23:28:46 +03:00
|
|
|
{
|
|
|
|
// TODO is this right?
|
|
|
|
return cmPolicies::WARN;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pos->second->Status;
|
|
|
|
}
|
|
|
|
|
2008-03-04 17:16:33 +03:00
|
|
|
void cmPolicies::GetDocumentation(std::vector<cmDocumentationEntry>& v)
|
|
|
|
{
|
|
|
|
// now loop over all the policies and set them as appropriate
|
|
|
|
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator i
|
|
|
|
= this->Policies.begin();
|
|
|
|
for (;i != this->Policies.end(); ++i)
|
|
|
|
{
|
2008-03-08 17:13:13 +03:00
|
|
|
cmOStringStream full;
|
|
|
|
full << i->second->LongDescription;
|
|
|
|
full << "\nThis policy was introduced in CMake version ";
|
|
|
|
full << i->second->GetVersionString() << ". ";
|
|
|
|
full << "CMake version " << cmVersion::GetMajorVersion()
|
|
|
|
<< "." << cmVersion::GetMinorVersion() << " ";
|
2008-03-04 17:16:33 +03:00
|
|
|
// add in some more text here based on status
|
2008-03-06 18:57:59 +03:00
|
|
|
switch (i->second->Status)
|
|
|
|
{
|
|
|
|
case cmPolicies::WARN:
|
2008-03-08 17:13:13 +03:00
|
|
|
full << "defaults to WARN for this policy. "
|
|
|
|
<< "Use the cmake_policy command to set it to OLD or NEW.";
|
|
|
|
break;
|
2008-03-06 18:57:59 +03:00
|
|
|
case cmPolicies::OLD:
|
2008-03-08 17:13:13 +03:00
|
|
|
full << "defaults to the OLD behavior for this policy.";
|
2008-03-06 18:57:59 +03:00
|
|
|
break;
|
|
|
|
case cmPolicies::NEW:
|
2008-03-08 17:13:13 +03:00
|
|
|
full << "defaults to the NEW behavior for this policy.";
|
2008-03-06 18:57:59 +03:00
|
|
|
break;
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
2008-03-08 17:13:13 +03:00
|
|
|
full << "requires the policy to be set to NEW if you use it. "
|
|
|
|
<< "Use the cmake_policy command to set it to NEW.";
|
2008-03-06 18:57:59 +03:00
|
|
|
break;
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
2008-03-08 17:13:13 +03:00
|
|
|
full << "requires the policy to be set to NEW. "
|
|
|
|
<< "Use the cmake_policy command to set it to NEW.";
|
2008-03-06 18:57:59 +03:00
|
|
|
break;
|
|
|
|
}
|
2008-03-04 17:16:33 +03:00
|
|
|
|
|
|
|
cmDocumentationEntry e(i->second->IDString.c_str(),
|
|
|
|
i->second->ShortDescription.c_str(),
|
2008-03-08 17:13:13 +03:00
|
|
|
full.str().c_str());
|
2008-03-04 17:16:33 +03:00
|
|
|
v.push_back(e);
|
|
|
|
}
|
|
|
|
}
|