2015-04-04 22:20:12 +03:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2015 Stephen Kelly <steveire@gmail.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#ifndef cmState_h
|
|
|
|
#define cmState_h
|
|
|
|
|
2016-08-17 02:08:13 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2015-07-18 13:28:49 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2016-08-17 02:08:13 +03:00
|
|
|
#include "cmDefinitions.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmLinkedTree.h"
|
2015-07-26 14:04:09 +03:00
|
|
|
#include "cmPolicies.h"
|
2016-08-17 02:08:13 +03:00
|
|
|
#include "cmProperty.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmPropertyDefinitionMap.h"
|
|
|
|
#include "cmPropertyMap.h"
|
2015-04-04 22:20:12 +03:00
|
|
|
|
2016-08-17 02:08:13 +03:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmCacheManager;
|
2015-04-11 13:30:26 +03:00
|
|
|
class cmCommand;
|
2015-06-21 22:26:43 +03:00
|
|
|
class cmListFileBacktrace;
|
2016-08-17 02:08:13 +03:00
|
|
|
class cmPropertyDefinition;
|
2015-04-04 22:20:12 +03:00
|
|
|
|
|
|
|
class cmState
|
|
|
|
{
|
2015-05-23 10:54:07 +03:00
|
|
|
struct SnapshotDataType;
|
2015-07-26 14:04:09 +03:00
|
|
|
struct PolicyStackEntry;
|
2015-07-18 12:34:44 +03:00
|
|
|
struct BuildsystemDirectoryStateType;
|
2015-05-23 01:04:09 +03:00
|
|
|
typedef cmLinkedTree<SnapshotDataType>::iterator PositionType;
|
2015-04-11 19:38:16 +03:00
|
|
|
friend class Snapshot;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2015-04-04 22:20:12 +03:00
|
|
|
public:
|
2015-10-10 16:42:02 +03:00
|
|
|
cmState();
|
2015-04-11 13:30:26 +03:00
|
|
|
~cmState();
|
2015-04-04 22:20:12 +03:00
|
|
|
|
2015-05-23 10:54:07 +03:00
|
|
|
enum SnapshotType
|
|
|
|
{
|
2015-08-01 20:44:47 +03:00
|
|
|
BaseType,
|
2015-06-21 22:26:36 +03:00
|
|
|
BuildsystemDirectoryType,
|
|
|
|
FunctionCallType,
|
|
|
|
MacroCallType,
|
2016-04-12 23:08:24 +03:00
|
|
|
IncludeFileType,
|
2015-07-26 13:56:10 +03:00
|
|
|
InlineListFileType,
|
2015-08-01 20:41:26 +03:00
|
|
|
PolicyScopeType,
|
|
|
|
VariableScopeType
|
2015-05-23 10:54:07 +03:00
|
|
|
};
|
|
|
|
|
2015-07-18 20:11:05 +03:00
|
|
|
class Directory;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class Snapshot
|
|
|
|
{
|
2015-04-11 19:38:16 +03:00
|
|
|
public:
|
2016-06-27 23:44:16 +03:00
|
|
|
Snapshot(cmState* state = CM_NULLPTR);
|
2015-07-23 16:11:37 +03:00
|
|
|
Snapshot(cmState* state, PositionType position);
|
2015-04-11 19:38:16 +03:00
|
|
|
|
2015-06-21 22:26:43 +03:00
|
|
|
const char* GetDefinition(std::string const& name) const;
|
|
|
|
bool IsInitialized(std::string const& name) const;
|
|
|
|
void SetDefinition(std::string const& name, std::string const& value);
|
|
|
|
void RemoveDefinition(std::string const& name);
|
|
|
|
std::vector<std::string> UnusedKeys() const;
|
|
|
|
std::vector<std::string> ClosureKeys() const;
|
|
|
|
bool RaiseScope(std::string const& var, const char* varDef);
|
|
|
|
|
2015-05-31 20:37:08 +03:00
|
|
|
void SetListFile(std::string const& listfile);
|
|
|
|
|
|
|
|
std::string GetExecutionListFile() const;
|
2015-07-19 17:26:49 +03:00
|
|
|
|
|
|
|
std::vector<Snapshot> GetChildren();
|
2015-05-31 20:37:08 +03:00
|
|
|
|
2015-05-04 23:38:37 +03:00
|
|
|
bool IsValid() const;
|
2015-05-23 09:02:54 +03:00
|
|
|
Snapshot GetBuildsystemDirectoryParent() const;
|
2015-07-04 07:56:13 +03:00
|
|
|
Snapshot GetCallStackParent() const;
|
2016-04-13 16:41:24 +03:00
|
|
|
Snapshot GetCallStackBottom() const;
|
2015-07-26 13:54:16 +03:00
|
|
|
SnapshotType GetType() const;
|
2015-05-04 23:38:37 +03:00
|
|
|
|
2015-07-26 14:04:09 +03:00
|
|
|
void SetPolicy(cmPolicies::PolicyID id, cmPolicies::PolicyStatus status);
|
|
|
|
cmPolicies::PolicyStatus GetPolicy(cmPolicies::PolicyID id) const;
|
|
|
|
bool HasDefinedPolicyCMP0011();
|
|
|
|
void PushPolicy(cmPolicies::PolicyMap entry, bool weak);
|
|
|
|
bool PopPolicy();
|
|
|
|
bool CanPopPolicyScope();
|
|
|
|
|
2015-06-04 20:33:38 +03:00
|
|
|
cmState* GetState() const;
|
2015-05-04 23:38:37 +03:00
|
|
|
|
2015-07-18 20:11:05 +03:00
|
|
|
Directory GetDirectory() const;
|
2015-05-05 00:30:29 +03:00
|
|
|
|
2015-08-02 10:41:06 +03:00
|
|
|
void SetProjectName(std::string const& name);
|
|
|
|
std::string GetProjectName() const;
|
|
|
|
|
2015-10-12 20:34:06 +03:00
|
|
|
void InitializeFromParent_ForSubdirsCommand();
|
|
|
|
|
2015-08-02 11:07:30 +03:00
|
|
|
struct StrictWeakOrder
|
|
|
|
{
|
|
|
|
bool operator()(const cmState::Snapshot& lhs,
|
|
|
|
const cmState::Snapshot& rhs) const;
|
|
|
|
};
|
|
|
|
|
2015-10-13 22:52:33 +03:00
|
|
|
void SetDirectoryDefinitions();
|
2015-10-13 22:48:46 +03:00
|
|
|
void SetDefaultDefinitions();
|
2015-10-13 22:52:33 +03:00
|
|
|
|
2015-04-11 19:38:16 +03:00
|
|
|
private:
|
2015-08-02 10:56:08 +03:00
|
|
|
friend bool operator==(const cmState::Snapshot& lhs,
|
|
|
|
const cmState::Snapshot& rhs);
|
|
|
|
friend bool operator!=(const cmState::Snapshot& lhs,
|
|
|
|
const cmState::Snapshot& rhs);
|
2015-04-11 19:38:16 +03:00
|
|
|
friend class cmState;
|
2015-07-18 20:11:05 +03:00
|
|
|
friend class Directory;
|
2015-08-02 11:07:30 +03:00
|
|
|
friend struct StrictWeakOrder;
|
2015-10-06 01:33:49 +03:00
|
|
|
|
|
|
|
void InitializeFromParent();
|
|
|
|
|
2015-04-11 19:38:16 +03:00
|
|
|
cmState* State;
|
|
|
|
cmState::PositionType Position;
|
|
|
|
};
|
|
|
|
|
2015-07-18 20:11:05 +03:00
|
|
|
class Directory
|
|
|
|
{
|
|
|
|
Directory(cmLinkedTree<BuildsystemDirectoryStateType>::iterator iter,
|
|
|
|
Snapshot const& snapshot);
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2015-07-18 20:11:05 +03:00
|
|
|
public:
|
|
|
|
const char* GetCurrentSource() const;
|
|
|
|
void SetCurrentSource(std::string const& dir);
|
|
|
|
const char* GetCurrentBinary() const;
|
|
|
|
void SetCurrentBinary(std::string const& dir);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<std::string> const& GetCurrentSourceComponents() const;
|
|
|
|
std::vector<std::string> const& GetCurrentBinaryComponents() const;
|
2015-07-18 20:11:05 +03:00
|
|
|
|
|
|
|
const char* GetRelativePathTopSource() const;
|
|
|
|
const char* GetRelativePathTopBinary() const;
|
|
|
|
void SetRelativePathTopSource(const char* dir);
|
|
|
|
void SetRelativePathTopBinary(const char* dir);
|
|
|
|
|
2015-07-18 13:28:49 +03:00
|
|
|
cmStringRange GetIncludeDirectoriesEntries() const;
|
|
|
|
cmBacktraceRange GetIncludeDirectoriesEntryBacktraces() const;
|
|
|
|
void AppendIncludeDirectoriesEntry(std::string const& vec,
|
|
|
|
cmListFileBacktrace const& lfbt);
|
|
|
|
void PrependIncludeDirectoriesEntry(std::string const& vec,
|
|
|
|
cmListFileBacktrace const& lfbt);
|
|
|
|
void SetIncludeDirectories(std::string const& vec,
|
|
|
|
cmListFileBacktrace const& lfbt);
|
|
|
|
void ClearIncludeDirectories();
|
|
|
|
|
|
|
|
cmStringRange GetCompileDefinitionsEntries() const;
|
|
|
|
cmBacktraceRange GetCompileDefinitionsEntryBacktraces() const;
|
|
|
|
void AppendCompileDefinitionsEntry(std::string const& vec,
|
|
|
|
cmListFileBacktrace const& lfbt);
|
|
|
|
void SetCompileDefinitions(std::string const& vec,
|
|
|
|
cmListFileBacktrace const& lfbt);
|
|
|
|
void ClearCompileDefinitions();
|
|
|
|
|
|
|
|
cmStringRange GetCompileOptionsEntries() const;
|
|
|
|
cmBacktraceRange GetCompileOptionsEntryBacktraces() const;
|
|
|
|
void AppendCompileOptionsEntry(std::string const& vec,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmListFileBacktrace const& lfbt);
|
2015-07-18 13:28:49 +03:00
|
|
|
void SetCompileOptions(std::string const& vec,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmListFileBacktrace const& lfbt);
|
2015-07-18 13:28:49 +03:00
|
|
|
void ClearCompileOptions();
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void SetProperty(const std::string& prop, const char* value,
|
2016-05-26 22:58:51 +03:00
|
|
|
cmListFileBacktrace const& lfbt);
|
2016-05-16 17:34:04 +03:00
|
|
|
void AppendProperty(const std::string& prop, const char* value,
|
2016-05-26 22:58:51 +03:00
|
|
|
bool asString, cmListFileBacktrace const& lfbt);
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* GetProperty(const std::string& prop) const;
|
|
|
|
const char* GetProperty(const std::string& prop, bool chain) const;
|
2015-07-18 16:18:59 +03:00
|
|
|
bool GetPropertyAsBool(const std::string& prop) const;
|
|
|
|
std::vector<std::string> GetPropertyKeys() const;
|
|
|
|
|
2015-07-18 20:11:05 +03:00
|
|
|
private:
|
|
|
|
void ComputeRelativePathTopSource();
|
|
|
|
void ComputeRelativePathTopBinary();
|
|
|
|
|
|
|
|
private:
|
|
|
|
cmLinkedTree<BuildsystemDirectoryStateType>::iterator DirectoryState;
|
|
|
|
Snapshot Snapshot_;
|
|
|
|
friend class Snapshot;
|
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
enum TargetType
|
|
|
|
{
|
|
|
|
EXECUTABLE,
|
|
|
|
STATIC_LIBRARY,
|
|
|
|
SHARED_LIBRARY,
|
|
|
|
MODULE_LIBRARY,
|
|
|
|
OBJECT_LIBRARY,
|
|
|
|
UTILITY,
|
|
|
|
GLOBAL_TARGET,
|
|
|
|
INTERFACE_LIBRARY,
|
|
|
|
UNKNOWN_LIBRARY
|
|
|
|
};
|
2015-10-08 01:21:51 +03:00
|
|
|
|
2015-10-08 01:26:50 +03:00
|
|
|
static const char* GetTargetTypeName(cmState::TargetType targetType);
|
|
|
|
|
2015-05-31 01:18:33 +03:00
|
|
|
Snapshot CreateBaseSnapshot();
|
2016-05-16 17:34:04 +03:00
|
|
|
Snapshot CreateBuildsystemDirectorySnapshot(Snapshot originSnapshot);
|
2015-05-31 20:37:08 +03:00
|
|
|
Snapshot CreateFunctionCallSnapshot(Snapshot originSnapshot,
|
|
|
|
std::string const& fileName);
|
|
|
|
Snapshot CreateMacroCallSnapshot(Snapshot originSnapshot,
|
|
|
|
std::string const& fileName);
|
2016-04-12 23:08:24 +03:00
|
|
|
Snapshot CreateIncludeFileSnapshot(Snapshot originSnapshot,
|
|
|
|
std::string const& fileName);
|
2016-04-14 18:24:08 +03:00
|
|
|
Snapshot CreateVariableScopeSnapshot(Snapshot originSnapshot);
|
2015-05-31 20:37:08 +03:00
|
|
|
Snapshot CreateInlineListFileSnapshot(Snapshot originSnapshot,
|
|
|
|
std::string const& fileName);
|
2015-07-26 13:56:10 +03:00
|
|
|
Snapshot CreatePolicyScopeSnapshot(Snapshot originSnapshot);
|
2015-06-21 22:26:36 +03:00
|
|
|
Snapshot Pop(Snapshot originSnapshot);
|
2015-04-11 19:38:16 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
enum CacheEntryType
|
|
|
|
{
|
|
|
|
BOOL = 0,
|
|
|
|
PATH,
|
|
|
|
FILEPATH,
|
|
|
|
STRING,
|
|
|
|
INTERNAL,
|
|
|
|
STATIC,
|
|
|
|
UNINITIALIZED
|
|
|
|
};
|
2015-04-07 23:45:54 +03:00
|
|
|
static CacheEntryType StringToCacheEntryType(const char*);
|
|
|
|
static const char* CacheEntryTypeToString(CacheEntryType);
|
2015-04-04 22:20:12 +03:00
|
|
|
static bool IsCacheEntryType(std::string const& key);
|
|
|
|
|
2015-10-10 16:21:41 +03:00
|
|
|
bool LoadCache(const std::string& path, bool internal,
|
|
|
|
std::set<std::string>& excludes,
|
|
|
|
std::set<std::string>& includes);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool SaveCache(const std::string& path);
|
2015-10-10 16:21:41 +03:00
|
|
|
|
|
|
|
bool DeleteCache(const std::string& path);
|
|
|
|
|
2015-04-04 22:20:12 +03:00
|
|
|
std::vector<std::string> GetCacheEntryKeys() const;
|
|
|
|
const char* GetCacheEntryValue(std::string const& key) const;
|
|
|
|
const char* GetInitializedCacheValue(std::string const& key) const;
|
2015-04-07 23:45:54 +03:00
|
|
|
CacheEntryType GetCacheEntryType(std::string const& key) const;
|
2015-04-04 22:20:12 +03:00
|
|
|
void SetCacheEntryValue(std::string const& key, std::string const& value);
|
|
|
|
void SetCacheValue(std::string const& key, std::string const& value);
|
|
|
|
|
|
|
|
void RemoveCacheEntry(std::string const& key);
|
|
|
|
|
|
|
|
void SetCacheEntryProperty(std::string const& key,
|
|
|
|
std::string const& propertyName,
|
|
|
|
std::string const& value);
|
|
|
|
void SetCacheEntryBoolProperty(std::string const& key,
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string const& propertyName, bool value);
|
2016-06-10 11:10:07 +03:00
|
|
|
std::vector<std::string> GetCacheEntryPropertyList(std::string const& key);
|
2015-04-04 22:20:12 +03:00
|
|
|
const char* GetCacheEntryProperty(std::string const& key,
|
|
|
|
std::string const& propertyName);
|
|
|
|
bool GetCacheEntryPropertyAsBool(std::string const& key,
|
|
|
|
std::string const& propertyName);
|
|
|
|
void AppendCacheEntryProperty(std::string const& key,
|
|
|
|
const std::string& property,
|
|
|
|
const std::string& value,
|
|
|
|
bool asString = false);
|
|
|
|
void RemoveCacheEntryProperty(std::string const& key,
|
|
|
|
std::string const& propertyName);
|
|
|
|
|
2015-10-10 16:08:15 +03:00
|
|
|
///! Break up a line like VAR:type="value" into var, type and value
|
2016-05-16 17:34:04 +03:00
|
|
|
static bool ParseCacheEntry(const std::string& entry, std::string& var,
|
|
|
|
std::string& value, CacheEntryType& type);
|
2015-10-10 16:08:15 +03:00
|
|
|
|
2015-06-14 02:08:34 +03:00
|
|
|
Snapshot Reset();
|
2015-04-05 00:33:26 +03:00
|
|
|
// Define a property
|
|
|
|
void DefineProperty(const std::string& name, cmProperty::ScopeType scope,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* ShortDescription,
|
|
|
|
const char* FullDescription, bool chain = false);
|
2015-04-05 00:33:26 +03:00
|
|
|
|
|
|
|
// get property definition
|
2016-05-16 17:34:04 +03:00
|
|
|
cmPropertyDefinition const* GetPropertyDefinition(
|
|
|
|
const std::string& name, cmProperty::ScopeType scope) const;
|
2015-04-05 00:33:26 +03:00
|
|
|
|
|
|
|
// Is a property defined?
|
2015-06-06 10:46:38 +03:00
|
|
|
bool IsPropertyDefined(const std::string& name,
|
|
|
|
cmProperty::ScopeType scope) const;
|
|
|
|
bool IsPropertyChained(const std::string& name,
|
|
|
|
cmProperty::ScopeType scope) const;
|
2015-04-05 00:33:26 +03:00
|
|
|
|
2015-04-11 15:16:39 +03:00
|
|
|
void SetLanguageEnabled(std::string const& l);
|
|
|
|
bool GetLanguageEnabled(std::string const& l) const;
|
|
|
|
std::vector<std::string> GetEnabledLanguages() const;
|
2015-04-30 15:56:48 +03:00
|
|
|
void SetEnabledLanguages(std::vector<std::string> const& langs);
|
2015-04-11 15:16:39 +03:00
|
|
|
void ClearEnabledLanguages();
|
2015-04-05 00:33:26 +03:00
|
|
|
|
2015-04-11 13:16:54 +03:00
|
|
|
bool GetIsInTryCompile() const;
|
|
|
|
void SetIsInTryCompile(bool b);
|
|
|
|
|
2015-04-11 13:30:26 +03:00
|
|
|
cmCommand* GetCommand(std::string const& name) const;
|
|
|
|
void AddCommand(cmCommand* command);
|
|
|
|
void RemoveUnscriptableCommands();
|
|
|
|
void RenameCommand(std::string const& oldName, std::string const& newName);
|
|
|
|
void RemoveUserDefinedCommands();
|
|
|
|
std::vector<std::string> GetCommandNames() const;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void SetGlobalProperty(const std::string& prop, const char* value);
|
|
|
|
void AppendGlobalProperty(const std::string& prop, const char* value,
|
|
|
|
bool asString = false);
|
|
|
|
const char* GetGlobalProperty(const std::string& prop);
|
2015-04-11 15:17:46 +03:00
|
|
|
bool GetGlobalPropertyAsBool(const std::string& prop);
|
|
|
|
|
2015-04-12 16:26:54 +03:00
|
|
|
const char* GetSourceDirectory() const;
|
|
|
|
void SetSourceDirectory(std::string const& sourceDirectory);
|
|
|
|
const char* GetBinaryDirectory() const;
|
|
|
|
void SetBinaryDirectory(std::string const& binaryDirectory);
|
|
|
|
|
2015-05-05 00:01:29 +03:00
|
|
|
std::vector<std::string> const& GetSourceDirectoryComponents() const;
|
|
|
|
std::vector<std::string> const& GetBinaryDirectoryComponents() const;
|
|
|
|
|
2015-05-24 12:46:30 +03:00
|
|
|
void SetWindowsShell(bool windowsShell);
|
|
|
|
bool UseWindowsShell() const;
|
|
|
|
void SetWindowsVSIDE(bool windowsVSIDE);
|
|
|
|
bool UseWindowsVSIDE() const;
|
|
|
|
void SetWatcomWMake(bool watcomWMake);
|
|
|
|
bool UseWatcomWMake() const;
|
|
|
|
void SetMinGWMake(bool minGWMake);
|
|
|
|
bool UseMinGWMake() const;
|
|
|
|
void SetNMake(bool nMake);
|
|
|
|
bool UseNMake() const;
|
|
|
|
void SetMSYSShell(bool mSYSShell);
|
|
|
|
bool UseMSYSShell() const;
|
|
|
|
|
2015-10-10 15:34:26 +03:00
|
|
|
unsigned int GetCacheMajorVersion() const;
|
|
|
|
unsigned int GetCacheMinorVersion() const;
|
|
|
|
|
2015-04-04 22:20:12 +03:00
|
|
|
private:
|
2015-10-10 16:05:50 +03:00
|
|
|
friend class cmake;
|
|
|
|
void AddCacheEntry(const std::string& key, const char* value,
|
|
|
|
const char* helpString, CacheEntryType type);
|
|
|
|
|
2015-04-05 00:33:26 +03:00
|
|
|
std::map<cmProperty::ScopeType, cmPropertyDefinitionMap> PropertyDefinitions;
|
2015-04-11 15:16:39 +03:00
|
|
|
std::vector<std::string> EnabledLanguages;
|
2015-04-11 13:30:26 +03:00
|
|
|
std::map<std::string, cmCommand*> Commands;
|
2015-04-11 15:17:46 +03:00
|
|
|
cmPropertyMap GlobalProperties;
|
2015-10-10 16:42:02 +03:00
|
|
|
cmCacheManager* CacheManager;
|
2015-05-05 00:01:29 +03:00
|
|
|
|
2015-05-23 01:04:09 +03:00
|
|
|
cmLinkedTree<BuildsystemDirectoryStateType> BuildsystemDirectory;
|
2015-05-23 11:37:07 +03:00
|
|
|
|
2015-05-31 20:37:08 +03:00
|
|
|
cmLinkedTree<std::string> ExecutionListFiles;
|
|
|
|
|
2015-07-26 14:04:09 +03:00
|
|
|
cmLinkedTree<PolicyStackEntry> PolicyStack;
|
2015-05-23 01:04:09 +03:00
|
|
|
cmLinkedTree<SnapshotDataType> SnapshotData;
|
2015-06-21 22:26:43 +03:00
|
|
|
cmLinkedTree<cmDefinitions> VarTree;
|
2015-05-05 00:08:19 +03:00
|
|
|
|
2015-05-05 00:01:29 +03:00
|
|
|
std::vector<std::string> SourceDirectoryComponents;
|
|
|
|
std::vector<std::string> BinaryDirectoryComponents;
|
2015-04-12 16:26:54 +03:00
|
|
|
std::string SourceDirectory;
|
|
|
|
std::string BinaryDirectory;
|
2015-04-11 13:16:54 +03:00
|
|
|
bool IsInTryCompile;
|
2015-05-24 12:46:30 +03:00
|
|
|
bool WindowsShell;
|
|
|
|
bool WindowsVSIDE;
|
|
|
|
bool WatcomWMake;
|
|
|
|
bool MinGWMake;
|
|
|
|
bool NMake;
|
|
|
|
bool MSYSShell;
|
2015-04-04 22:20:12 +03:00
|
|
|
};
|
|
|
|
|
2015-08-02 10:56:08 +03:00
|
|
|
bool operator==(const cmState::Snapshot& lhs, const cmState::Snapshot& rhs);
|
|
|
|
bool operator!=(const cmState::Snapshot& lhs, const cmState::Snapshot& rhs);
|
|
|
|
|
2015-04-04 22:20:12 +03:00
|
|
|
#endif
|