2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-04-11 14:59:02 -04:00
|
|
|
#ifndef cmTarget_h
|
|
|
|
#define cmTarget_h
|
|
|
|
|
2017-04-11 22:00:21 +02:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2016-11-05 21:40:14 +01:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
2017-08-22 23:05:27 +02:00
|
|
|
#include <unordered_map>
|
2016-11-05 21:40:14 +01:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-08-17 01:08:13 +02:00
|
|
|
#include "cmAlgorithms.h"
|
2001-04-11 14:59:02 -04:00
|
|
|
#include "cmCustomCommand.h"
|
2013-02-12 10:35:28 +01:00
|
|
|
#include "cmListFileCache.h"
|
2016-04-29 10:53:13 -04:00
|
|
|
#include "cmPolicies.h"
|
|
|
|
#include "cmPropertyMap.h"
|
2016-10-18 21:28:48 +02:00
|
|
|
#include "cmStateTypes.h"
|
2016-08-17 01:08:13 +02:00
|
|
|
#include "cmTargetLinkLibraryType.h"
|
|
|
|
|
2016-11-05 21:40:14 +01:00
|
|
|
class cmGlobalGenerator;
|
2005-02-18 16:12:08 -05:00
|
|
|
class cmMakefile;
|
2016-11-05 21:40:14 +01:00
|
|
|
class cmMessenger;
|
2002-09-27 16:24:10 -04:00
|
|
|
class cmSourceFile;
|
2008-02-18 16:38:34 -05:00
|
|
|
class cmTargetInternals;
|
2016-08-17 01:08:13 +02:00
|
|
|
|
2008-02-18 16:38:34 -05:00
|
|
|
class cmTargetInternalPointer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmTargetInternalPointer();
|
|
|
|
cmTargetInternalPointer(cmTargetInternalPointer const& r);
|
|
|
|
~cmTargetInternalPointer();
|
|
|
|
cmTargetInternalPointer& operator=(cmTargetInternalPointer const& r);
|
|
|
|
cmTargetInternals* operator->() const { return this->Pointer; }
|
2009-09-07 10:11:43 -04:00
|
|
|
cmTargetInternals* Get() const { return this->Pointer; }
|
2018-06-01 09:53:41 -04:00
|
|
|
|
2008-02-18 16:38:34 -05:00
|
|
|
private:
|
|
|
|
cmTargetInternals* Pointer;
|
|
|
|
};
|
|
|
|
|
2001-04-11 14:59:02 -04:00
|
|
|
/** \class cmTarget
|
|
|
|
* \brief Represent a library or executable target loaded from a makefile.
|
|
|
|
*
|
2007-07-02 13:32:41 -04:00
|
|
|
* cmTarget represents a target loaded from
|
2001-04-11 14:59:02 -04:00
|
|
|
* a makefile.
|
|
|
|
*/
|
|
|
|
class cmTarget
|
|
|
|
{
|
|
|
|
public:
|
2016-09-14 14:28:07 -04:00
|
|
|
enum Visibility
|
|
|
|
{
|
|
|
|
VisibilityNormal,
|
|
|
|
VisibilityImported,
|
|
|
|
VisibilityImportedGlobally
|
|
|
|
};
|
|
|
|
|
2016-10-18 21:28:46 +02:00
|
|
|
cmTarget(std::string const& name, cmStateEnums::TargetType type,
|
|
|
|
Visibility vis, cmMakefile* mf);
|
2016-09-14 14:28:07 -04:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
enum CustomCommandType
|
|
|
|
{
|
|
|
|
PRE_BUILD,
|
|
|
|
PRE_LINK,
|
|
|
|
POST_BUILD
|
|
|
|
};
|
2003-06-03 10:30:23 -04:00
|
|
|
|
2001-04-19 13:28:46 -04:00
|
|
|
/**
|
2001-05-01 16:55:32 -04:00
|
|
|
* Return the type of target.
|
2001-04-19 13:28:46 -04:00
|
|
|
*/
|
2016-10-18 21:28:46 +02:00
|
|
|
cmStateEnums::TargetType GetType() const { return this->TargetTypeValue; }
|
2007-07-02 13:32:41 -04:00
|
|
|
|
2016-10-13 00:18:25 +02:00
|
|
|
cmGlobalGenerator* GetGlobalGenerator() const;
|
|
|
|
|
2004-09-22 14:42:05 -04:00
|
|
|
///! Set/Get the name of the target
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::string& GetName() const { return this->Name; }
|
2002-11-19 18:01:05 -05:00
|
|
|
|
2016-09-14 14:28:07 -04:00
|
|
|
/** Get the cmMakefile that owns this target. */
|
2016-05-16 10:34:04 -04:00
|
|
|
cmMakefile* GetMakefile() const { return this->Makefile; }
|
2007-07-02 13:32:41 -04:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
#define DECLARE_TARGET_POLICY(POLICY) \
|
|
|
|
cmPolicies::PolicyStatus GetPolicyStatus##POLICY() const \
|
|
|
|
{ \
|
|
|
|
return this->PolicyMap.Get(cmPolicies::POLICY); \
|
|
|
|
}
|
2008-07-23 12:59:14 -04:00
|
|
|
|
2013-06-28 11:25:40 +02:00
|
|
|
CM_FOR_EACH_TARGET_POLICY(DECLARE_TARGET_POLICY)
|
2012-11-20 14:53:41 +01:00
|
|
|
|
2013-06-28 11:25:40 +02:00
|
|
|
#undef DECLARE_TARGET_POLICY
|
2013-06-04 16:25:47 +02:00
|
|
|
|
2001-04-19 13:28:46 -04:00
|
|
|
/**
|
|
|
|
* Get the list of the custom commands for this target
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
std::vector<cmCustomCommand> const& GetPreBuildCommands() const
|
|
|
|
{
|
|
|
|
return this->PreBuildCommands;
|
|
|
|
}
|
|
|
|
std::vector<cmCustomCommand> const& GetPreLinkCommands() const
|
|
|
|
{
|
|
|
|
return this->PreLinkCommands;
|
|
|
|
}
|
|
|
|
std::vector<cmCustomCommand> const& GetPostBuildCommands() const
|
|
|
|
{
|
|
|
|
return this->PostBuildCommands;
|
|
|
|
}
|
|
|
|
void AddPreBuildCommand(cmCustomCommand const& cmd)
|
|
|
|
{
|
|
|
|
this->PreBuildCommands.push_back(cmd);
|
|
|
|
}
|
|
|
|
void AddPreLinkCommand(cmCustomCommand const& cmd)
|
|
|
|
{
|
|
|
|
this->PreLinkCommands.push_back(cmd);
|
|
|
|
}
|
|
|
|
void AddPostBuildCommand(cmCustomCommand const& cmd)
|
|
|
|
{
|
|
|
|
this->PostBuildCommands.push_back(cmd);
|
|
|
|
}
|
2001-04-19 13:28:46 -04:00
|
|
|
|
2007-06-18 11:59:23 -04:00
|
|
|
/**
|
|
|
|
* Add sources to the target.
|
|
|
|
*/
|
|
|
|
void AddSources(std::vector<std::string> const& srcs);
|
2014-04-09 01:32:14 +02:00
|
|
|
void AddTracedSources(std::vector<std::string> const& srcs);
|
2014-03-17 16:54:11 +01:00
|
|
|
cmSourceFile* AddSourceCMP0049(const std::string& src);
|
2019-01-17 11:14:38 +01:00
|
|
|
cmSourceFile* AddSource(const std::string& src, bool before = false);
|
2007-06-18 11:59:23 -04:00
|
|
|
|
2006-11-29 11:00:17 -05:00
|
|
|
//* how we identify a library, by name and type
|
2015-10-10 13:56:36 +02:00
|
|
|
typedef std::pair<std::string, cmTargetLinkLibraryType> LibraryID;
|
2006-11-29 11:00:17 -05:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
typedef std::vector<LibraryID> LinkLibraryVectorType;
|
|
|
|
const LinkLibraryVectorType& GetOriginalLinkLibraries() const
|
|
|
|
{
|
|
|
|
return this->OriginalLinkLibraries;
|
|
|
|
}
|
2007-07-02 13:32:41 -04:00
|
|
|
|
2002-11-19 18:01:05 -05:00
|
|
|
/**
|
|
|
|
* Clear the dependency information recorded for this target, if any.
|
|
|
|
*/
|
2018-03-06 13:54:45 -05:00
|
|
|
void ClearDependencyInformation(cmMakefile& mf);
|
2002-11-19 18:01:05 -05:00
|
|
|
|
2016-10-07 20:13:36 +02:00
|
|
|
void AddLinkLibrary(cmMakefile& mf, const std::string& lib,
|
|
|
|
cmTargetLinkLibraryType llt);
|
2018-09-07 12:59:52 -04:00
|
|
|
void AddLinkLibrary(cmMakefile& mf, std::string const& lib,
|
|
|
|
std::string const& libRef, cmTargetLinkLibraryType llt);
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
enum TLLSignature
|
|
|
|
{
|
2013-06-04 16:21:33 +02:00
|
|
|
KeywordTLLSignature,
|
|
|
|
PlainTLLSignature
|
|
|
|
};
|
2015-06-23 14:56:47 -04:00
|
|
|
bool PushTLLCommandTrace(TLLSignature signature,
|
|
|
|
cmListFileContext const& lfc);
|
2016-06-08 22:29:15 +02:00
|
|
|
void GetTllSignatureTraces(std::ostream& s, TLLSignature sig) const;
|
2002-05-03 16:34:05 -04:00
|
|
|
|
2001-05-23 11:31:43 -04:00
|
|
|
/**
|
|
|
|
* Set the path where this target should be installed. This is relative to
|
|
|
|
* INSTALL_PREFIX
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string GetInstallPath() const { return this->InstallPath; }
|
|
|
|
void SetInstallPath(const char* name) { this->InstallPath = name; }
|
2007-07-02 13:32:41 -04:00
|
|
|
|
2004-01-27 12:37:30 -05:00
|
|
|
/**
|
|
|
|
* Set the path where this target (if it has a runtime part) should be
|
|
|
|
* installed. This is relative to INSTALL_PREFIX
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string GetRuntimeInstallPath() const
|
|
|
|
{
|
|
|
|
return this->RuntimeInstallPath;
|
|
|
|
}
|
|
|
|
void SetRuntimeInstallPath(const char* name)
|
|
|
|
{
|
|
|
|
this->RuntimeInstallPath = name;
|
|
|
|
}
|
2006-02-19 17:27:47 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get/Set whether there is an install rule for this target.
|
|
|
|
*/
|
2013-10-29 22:21:20 +01:00
|
|
|
bool GetHaveInstallRule() const { return this->HaveInstallRule; }
|
2006-03-15 11:02:08 -05:00
|
|
|
void SetHaveInstallRule(bool h) { this->HaveInstallRule = h; }
|
2006-02-19 17:27:47 -05:00
|
|
|
|
2017-11-10 11:09:24 -08:00
|
|
|
/**
|
2018-06-01 09:53:41 -04:00
|
|
|
* Get/Set whether this target was auto-created by a generator.
|
|
|
|
*/
|
2017-11-10 11:09:24 -08:00
|
|
|
bool GetIsGeneratorProvided() const { return this->IsGeneratorProvided; }
|
|
|
|
void SetIsGeneratorProvided(bool igp) { this->IsGeneratorProvided = igp; }
|
|
|
|
|
2001-06-07 14:52:29 -04:00
|
|
|
/** Add a utility on which this project depends. A utility is an executable
|
|
|
|
* name as would be specified to the ADD_EXECUTABLE or UTILITY_SOURCE
|
2007-07-02 13:32:41 -04:00
|
|
|
* commands. It is not a full path nor does it have an extension.
|
2001-06-07 14:52:29 -04:00
|
|
|
*/
|
2018-10-17 10:25:20 -04:00
|
|
|
void AddUtility(std::string const& u, cmMakefile* mf = nullptr);
|
2001-06-07 14:52:29 -04:00
|
|
|
///! Get the utilities used by this target
|
2018-10-17 10:25:20 -04:00
|
|
|
std::set<BT<std::string>> const& GetUtilities() const
|
|
|
|
{
|
|
|
|
return this->Utilities;
|
|
|
|
}
|
2001-06-13 13:49:24 -04:00
|
|
|
|
2002-12-20 17:15:45 -05:00
|
|
|
///! Set/Get a property of this target file
|
2016-05-16 10:34:04 -04:00
|
|
|
void SetProperty(const std::string& prop, const char* value);
|
|
|
|
void AppendProperty(const std::string& prop, const char* value,
|
|
|
|
bool asString = false);
|
2018-07-02 12:39:54 +02:00
|
|
|
///! Might return a nullptr if the property is not set or invalid
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* GetProperty(const std::string& prop) const;
|
2018-07-02 12:39:54 +02:00
|
|
|
///! Always returns a valid pointer
|
|
|
|
const char* GetSafeProperty(const std::string& prop) const;
|
2013-09-02 16:27:32 -04:00
|
|
|
bool GetPropertyAsBool(const std::string& prop) const;
|
|
|
|
void CheckProperty(const std::string& prop, cmMakefile* context) const;
|
2016-10-13 00:18:26 +02:00
|
|
|
const char* GetComputedProperty(const std::string& prop,
|
|
|
|
cmMessenger* messenger,
|
|
|
|
cmListFileBacktrace const& context) const;
|
2007-07-02 13:32:41 -04:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
bool IsImported() const { return this->IsImportedTarget; }
|
2015-10-25 12:22:51 +01:00
|
|
|
bool IsImportedGloballyVisible() const
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
|
|
|
return this->ImportedGloballyVisible;
|
|
|
|
}
|
2002-12-20 17:15:45 -05:00
|
|
|
|
2006-12-07 09:45:32 -05:00
|
|
|
// Get the properties
|
2016-10-13 00:18:22 +02:00
|
|
|
cmPropertyMap const& GetProperties() const { return this->Properties; }
|
2006-12-07 09:45:32 -05:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
bool GetMappedConfig(std::string const& desired_config, const char** loc,
|
|
|
|
const char** imp, std::string& suffix) const;
|
2012-12-23 11:20:37 +01:00
|
|
|
|
2008-01-28 08:38:36 -05:00
|
|
|
/** Return whether this target is an executable with symbol exports
|
|
|
|
enabled. */
|
2013-10-29 22:21:20 +01:00
|
|
|
bool IsExecutableWithExports() const;
|
2008-01-28 08:38:36 -05:00
|
|
|
|
2008-01-28 13:05:58 -05:00
|
|
|
/** Return whether this target is a shared library Framework on
|
|
|
|
Apple. */
|
2013-10-29 22:21:20 +01:00
|
|
|
bool IsFrameworkOnApple() const;
|
2008-01-28 13:05:58 -05:00
|
|
|
|
2008-01-28 14:46:16 -05:00
|
|
|
/** Return whether this target is an executable Bundle on Apple. */
|
2013-10-29 22:21:20 +01:00
|
|
|
bool IsAppBundleOnApple() const;
|
2008-01-28 14:46:16 -05:00
|
|
|
|
2008-03-13 13:48:57 -04:00
|
|
|
/** Get a backtrace from the creation of the target. */
|
|
|
|
cmListFileBacktrace const& GetBacktrace() const;
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
void InsertInclude(std::string const& entry, cmListFileBacktrace const& bt,
|
2012-11-19 22:47:30 +01:00
|
|
|
bool before = false);
|
2015-07-08 23:17:16 +02:00
|
|
|
void InsertCompileOption(std::string const& entry,
|
2016-05-16 10:34:04 -04:00
|
|
|
cmListFileBacktrace const& bt, bool before = false);
|
2015-07-08 23:11:22 +02:00
|
|
|
void InsertCompileDefinition(std::string const& entry,
|
|
|
|
cmListFileBacktrace const& bt);
|
2018-04-24 17:01:01 +02:00
|
|
|
void InsertLinkOption(std::string const& entry,
|
|
|
|
cmListFileBacktrace const& bt, bool before = false);
|
2018-09-14 17:48:20 +02:00
|
|
|
void InsertLinkDirectory(std::string const& entry,
|
|
|
|
cmListFileBacktrace const& bt, bool before = false);
|
2012-11-05 14:48:42 +01:00
|
|
|
|
2013-01-12 12:11:29 +01:00
|
|
|
void AppendBuildInterfaceIncludes();
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string GetDebugGeneratorExpressions(const std::string& value,
|
|
|
|
cmTargetLinkLibraryType llt) const;
|
2013-07-01 22:55:25 +02:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
void AddSystemIncludeDirectories(const std::set<std::string>& incs);
|
|
|
|
std::set<std::string> const& GetSystemIncludeDirectories() const
|
|
|
|
{
|
|
|
|
return this->SystemIncludeDirectories;
|
|
|
|
}
|
2013-07-02 14:30:10 +02:00
|
|
|
|
2015-08-04 23:14:53 +02:00
|
|
|
cmStringRange GetIncludeDirectoriesEntries() const;
|
|
|
|
cmBacktraceRange GetIncludeDirectoriesBacktraces() const;
|
|
|
|
|
2015-08-04 23:43:56 +02:00
|
|
|
cmStringRange GetCompileOptionsEntries() const;
|
|
|
|
cmBacktraceRange GetCompileOptionsBacktraces() const;
|
|
|
|
|
2015-08-04 23:48:58 +02:00
|
|
|
cmStringRange GetCompileFeaturesEntries() const;
|
|
|
|
cmBacktraceRange GetCompileFeaturesBacktraces() const;
|
|
|
|
|
2015-08-05 00:00:53 +02:00
|
|
|
cmStringRange GetCompileDefinitionsEntries() const;
|
|
|
|
cmBacktraceRange GetCompileDefinitionsBacktraces() const;
|
|
|
|
|
2015-09-13 10:18:15 +02:00
|
|
|
cmStringRange GetSourceEntries() const;
|
|
|
|
cmBacktraceRange GetSourceBacktraces() const;
|
2018-04-24 17:01:01 +02:00
|
|
|
|
|
|
|
cmStringRange GetLinkOptionsEntries() const;
|
|
|
|
cmBacktraceRange GetLinkOptionsBacktraces() const;
|
|
|
|
|
2018-09-14 17:48:20 +02:00
|
|
|
cmStringRange GetLinkDirectoriesEntries() const;
|
|
|
|
cmBacktraceRange GetLinkDirectoriesBacktraces() const;
|
|
|
|
|
2015-08-05 18:17:55 +02:00
|
|
|
cmStringRange GetLinkImplementationEntries() const;
|
|
|
|
cmBacktraceRange GetLinkImplementationBacktraces() const;
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
struct StrictTargetComparison
|
|
|
|
{
|
2015-10-21 19:48:47 +02:00
|
|
|
bool operator()(cmTarget const* t1, cmTarget const* t2) const;
|
|
|
|
};
|
|
|
|
|
2016-10-13 00:18:23 +02:00
|
|
|
std::string ImportedGetFullPath(const std::string& config,
|
2017-04-19 19:10:09 +02:00
|
|
|
cmStateEnums::ArtifactType artifact) const;
|
2013-06-28 16:37:39 +02:00
|
|
|
|
2016-10-13 00:18:23 +02:00
|
|
|
private:
|
2017-04-19 19:10:09 +02:00
|
|
|
const char* GetSuffixVariableInternal(
|
|
|
|
cmStateEnums::ArtifactType artifact) const;
|
|
|
|
const char* GetPrefixVariableInternal(
|
|
|
|
cmStateEnums::ArtifactType artifact) const;
|
2007-07-02 13:32:41 -04:00
|
|
|
|
2006-02-16 15:19:00 -05:00
|
|
|
// Use a makefile variable to set a default for the given property.
|
|
|
|
// If the variable is not defined use the given default instead.
|
2013-09-02 16:27:32 -04:00
|
|
|
void SetPropertyDefault(const std::string& property,
|
|
|
|
const char* default_value);
|
2006-12-07 09:45:32 -05:00
|
|
|
|
2016-11-03 16:44:32 -04:00
|
|
|
bool CheckImportedLibName(std::string const& prop,
|
|
|
|
std::string const& value) const;
|
|
|
|
|
2001-04-19 13:28:46 -04:00
|
|
|
private:
|
2017-11-10 11:09:24 -08:00
|
|
|
bool IsGeneratorProvided;
|
2016-10-13 00:18:22 +02:00
|
|
|
cmPropertyMap Properties;
|
2015-06-06 09:44:47 +02:00
|
|
|
std::set<std::string> SystemIncludeDirectories;
|
2018-10-17 10:25:20 -04:00
|
|
|
std::set<BT<std::string>> Utilities;
|
2015-06-06 09:44:47 +02:00
|
|
|
cmPolicies::PolicyMap PolicyMap;
|
2006-03-15 11:02:08 -05:00
|
|
|
std::string Name;
|
2015-06-06 09:44:47 +02:00
|
|
|
std::string InstallPath;
|
|
|
|
std::string RuntimeInstallPath;
|
2006-03-15 11:02:08 -05:00
|
|
|
std::vector<cmCustomCommand> PreBuildCommands;
|
|
|
|
std::vector<cmCustomCommand> PreLinkCommands;
|
|
|
|
std::vector<cmCustomCommand> PostBuildCommands;
|
2017-08-25 23:25:09 +02:00
|
|
|
std::vector<std::pair<TLLSignature, cmListFileContext>> TLLCommands;
|
2015-06-06 09:44:47 +02:00
|
|
|
LinkLibraryVectorType OriginalLinkLibraries;
|
|
|
|
cmMakefile* Makefile;
|
|
|
|
cmTargetInternalPointer Internal;
|
2016-10-18 21:28:46 +02:00
|
|
|
cmStateEnums::TargetType TargetTypeValue;
|
2006-03-15 11:02:08 -05:00
|
|
|
bool HaveInstallRule;
|
2007-03-19 10:00:36 -04:00
|
|
|
bool DLLPlatform;
|
2014-07-24 15:03:04 -04:00
|
|
|
bool IsAndroid;
|
2007-05-22 10:24:59 -04:00
|
|
|
bool IsImportedTarget;
|
2015-10-25 12:22:51 +01:00
|
|
|
bool ImportedGloballyVisible;
|
2015-06-06 09:44:47 +02:00
|
|
|
bool BuildInterfaceIncludesAppended;
|
2006-01-13 18:18:32 -05:00
|
|
|
|
2014-04-04 17:45:28 +02:00
|
|
|
std::string ProcessSourceItemCMP0049(const std::string& s);
|
|
|
|
|
2015-10-09 23:45:55 +02:00
|
|
|
/** Return whether or not the target has a DLL import library. */
|
|
|
|
bool HasImportLibrary() const;
|
|
|
|
|
2008-02-18 16:38:34 -05:00
|
|
|
// Internal representation details.
|
|
|
|
friend class cmTargetInternals;
|
2012-10-11 00:57:11 +02:00
|
|
|
friend class cmGeneratorTarget;
|
|
|
|
friend class cmTargetTraceDependencies;
|
2008-02-18 16:38:34 -05:00
|
|
|
|
2015-10-10 13:20:09 +02:00
|
|
|
cmListFileBacktrace Backtrace;
|
2001-04-11 14:59:02 -04:00
|
|
|
};
|
|
|
|
|
2017-08-22 23:05:27 +02:00
|
|
|
typedef std::unordered_map<std::string, cmTarget> cmTargets;
|
2001-04-11 14:59:02 -04:00
|
|
|
|
|
|
|
#endif
|