2008-02-29 23:28:46 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmPolicies_h
|
|
|
|
#define cmPolicies_h
|
|
|
|
|
|
|
|
#include "cmCustomCommand.h"
|
|
|
|
|
|
|
|
class cmake;
|
|
|
|
class cmMakefile;
|
|
|
|
class cmPolicy;
|
|
|
|
|
|
|
|
/** \class cmPolicies
|
|
|
|
* \brief Handles changes in CMake behavior and policies
|
|
|
|
*
|
2008-03-01 23:26:15 +03:00
|
|
|
* See the cmake wiki section on policies for an overview of this class's
|
|
|
|
* purpose
|
2008-02-29 23:28:46 +03:00
|
|
|
*/
|
|
|
|
class cmPolicies
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmPolicies();
|
|
|
|
~cmPolicies();
|
|
|
|
|
|
|
|
enum PolicyStatus { OLD, WARN, NEW, REQUIRED_IF_USED, REQUIRED_ALWAYS };
|
|
|
|
static const char* PolicyStatusNames[];
|
|
|
|
|
2008-03-07 23:30:35 +03:00
|
|
|
enum PolicyID
|
|
|
|
{
|
2008-03-13 18:38:46 +03:00
|
|
|
CMP0000, // Policy version specification
|
|
|
|
CMP0001, // Ignore old compatibility variable
|
|
|
|
CMP0002, // Target names must be unique
|
2008-03-13 23:23:18 +03:00
|
|
|
CMP0003, // Linking does not include extra -L paths
|
2008-03-13 23:35:39 +03:00
|
|
|
CMP0004, // Libraries linked may not have leading or trailing whitespace
|
2008-03-14 00:11:57 +03:00
|
|
|
CMP0005, // Definition value escaping
|
2008-04-15 01:53:11 +04:00
|
|
|
CMP0006, // BUNDLE install rules needed for MACOSX_BUNDLE targets
|
2008-04-22 00:57:11 +04:00
|
|
|
CMP0007, // list command handling of empty elements
|
2008-07-23 20:59:14 +04:00
|
|
|
CMP0008, // Full-path libraries must be a valid library file name
|
2008-03-08 00:36:57 +03:00
|
|
|
|
|
|
|
// Always the last entry. Useful mostly to avoid adding a comma
|
|
|
|
// the last policy when adding a new one.
|
2008-03-13 18:38:46 +03:00
|
|
|
CMPCOUNT
|
2008-03-07 23:30:35 +03:00
|
|
|
};
|
2008-02-29 23:28:46 +03:00
|
|
|
|
|
|
|
///! convert a string policy ID into a number
|
|
|
|
bool GetPolicyID(const char *id, /* out */ cmPolicies::PolicyID &pid);
|
|
|
|
std::string GetPolicyIDString(cmPolicies::PolicyID pid);
|
|
|
|
|
|
|
|
///! Get the default status for a policy
|
|
|
|
cmPolicies::PolicyStatus GetPolicyStatus(cmPolicies::PolicyID id);
|
|
|
|
|
|
|
|
///! Define a Policy for CMake
|
|
|
|
void DefinePolicy(cmPolicies::PolicyID id,
|
|
|
|
const char *stringID,
|
|
|
|
const char *shortDescription,
|
|
|
|
const char *longDescription,
|
|
|
|
unsigned int majorVersionIntroduced,
|
|
|
|
unsigned int minorVersionIntroduced,
|
|
|
|
unsigned int patchVersionIntroduced,
|
|
|
|
cmPolicies::PolicyStatus status);
|
|
|
|
|
|
|
|
///! Set a policy level for this listfile
|
|
|
|
bool ApplyPolicyVersion(cmMakefile *mf, const char *version);
|
|
|
|
|
|
|
|
///! return a warning string for a given policy
|
|
|
|
std::string GetPolicyWarning(cmPolicies::PolicyID id);
|
|
|
|
|
|
|
|
///! return an error string for when a required policy is unspecified
|
|
|
|
std::string GetRequiredPolicyError(cmPolicies::PolicyID id);
|
|
|
|
|
2008-08-19 00:29:00 +04:00
|
|
|
///! return an error string for when a required policy is unspecified
|
|
|
|
std::string GetRequiredAlwaysPolicyError(cmPolicies::PolicyID id);
|
|
|
|
|
2008-03-04 17:16:33 +03:00
|
|
|
///! Get docs for policies
|
|
|
|
void GetDocumentation(std::vector<cmDocumentationEntry>& v);
|
|
|
|
|
2008-02-29 23:28:46 +03:00
|
|
|
private:
|
2008-03-02 17:12:27 +03:00
|
|
|
// might have to make these internal for VS6 not sure yet
|
|
|
|
std::map<PolicyID,cmPolicy *> Policies;
|
|
|
|
std::map<std::string,PolicyID> PolicyStringMap;
|
2008-08-19 00:29:00 +04:00
|
|
|
|
|
|
|
void DiagnoseAncientPolicies(std::vector<PolicyID> const& ancient,
|
|
|
|
unsigned int majorVer, unsigned int minorVer,
|
|
|
|
unsigned int patchVer, cmMakefile* mf);
|
2008-02-29 23:28:46 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|