2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2001-04-11 22:59:02 +04:00
|
|
|
#ifndef cmTarget_h
|
|
|
|
#define cmTarget_h
|
|
|
|
|
|
|
|
#include "cmCustomCommand.h"
|
2006-12-07 17:45:32 +03:00
|
|
|
#include "cmPropertyMap.h"
|
2008-03-13 23:23:18 +03:00
|
|
|
#include "cmPolicies.h"
|
2005-02-19 00:12:08 +03:00
|
|
|
|
2009-07-07 00:24:32 +04:00
|
|
|
#include <cmsys/auto_ptr.hxx>
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
class cmake;
|
2005-02-19 00:12:08 +03:00
|
|
|
class cmMakefile;
|
2002-09-28 00:24:10 +04:00
|
|
|
class cmSourceFile;
|
2004-09-22 22:42:05 +04:00
|
|
|
class cmGlobalGenerator;
|
2008-01-29 23:07:33 +03:00
|
|
|
class cmComputeLinkInformation;
|
2008-03-13 20:48:57 +03:00
|
|
|
class cmListFileBacktrace;
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2008-01-30 01:30:34 +03:00
|
|
|
struct cmTargetLinkInformationMap:
|
|
|
|
public std::map<cmStdString, cmComputeLinkInformation*>
|
|
|
|
{
|
|
|
|
typedef std::map<cmStdString, cmComputeLinkInformation*> derived;
|
|
|
|
cmTargetLinkInformationMap() {}
|
|
|
|
cmTargetLinkInformationMap(cmTargetLinkInformationMap const& r);
|
|
|
|
~cmTargetLinkInformationMap();
|
|
|
|
};
|
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
class cmTargetInternals;
|
|
|
|
class cmTargetInternalPointer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmTargetInternalPointer();
|
|
|
|
cmTargetInternalPointer(cmTargetInternalPointer const& r);
|
|
|
|
~cmTargetInternalPointer();
|
|
|
|
cmTargetInternalPointer& operator=(cmTargetInternalPointer const& r);
|
|
|
|
cmTargetInternals* operator->() const { return this->Pointer; }
|
2009-09-07 18:11:43 +04:00
|
|
|
cmTargetInternals* Get() const { return this->Pointer; }
|
2008-02-19 00:38:34 +03:00
|
|
|
private:
|
|
|
|
cmTargetInternals* Pointer;
|
|
|
|
};
|
|
|
|
|
2001-04-11 22:59:02 +04:00
|
|
|
/** \class cmTarget
|
|
|
|
* \brief Represent a library or executable target loaded from a makefile.
|
|
|
|
*
|
2007-07-02 21:32:41 +04:00
|
|
|
* cmTarget represents a target loaded from
|
2001-04-11 22:59:02 +04:00
|
|
|
* a makefile.
|
|
|
|
*/
|
|
|
|
class cmTarget
|
|
|
|
{
|
|
|
|
public:
|
2006-01-14 02:18:32 +03:00
|
|
|
cmTarget();
|
2004-02-29 02:59:19 +03:00
|
|
|
enum TargetType { EXECUTABLE, STATIC_LIBRARY,
|
2006-02-25 01:35:35 +03:00
|
|
|
SHARED_LIBRARY, MODULE_LIBRARY, UTILITY, GLOBAL_TARGET,
|
2008-08-18 19:39:22 +04:00
|
|
|
INSTALL_FILES, INSTALL_PROGRAMS, INSTALL_DIRECTORY,
|
|
|
|
UNKNOWN_LIBRARY};
|
2006-05-19 21:02:12 +04:00
|
|
|
static const char* TargetTypeNames[];
|
2003-06-03 18:30:23 +04:00
|
|
|
enum CustomCommandType { PRE_BUILD, PRE_LINK, POST_BUILD };
|
|
|
|
|
2001-04-19 21:28:46 +04:00
|
|
|
/**
|
2001-05-02 00:55:32 +04:00
|
|
|
* Return the type of target.
|
2001-04-19 21:28:46 +04:00
|
|
|
*/
|
2007-05-22 18:24:59 +04:00
|
|
|
TargetType GetType() const
|
2001-05-02 00:55:32 +04:00
|
|
|
{
|
2007-07-02 21:32:41 +04:00
|
|
|
return this->TargetTypeValue;
|
2001-05-02 00:55:32 +04:00
|
|
|
}
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2002-11-20 02:01:05 +03:00
|
|
|
/**
|
|
|
|
* Set the target type
|
|
|
|
*/
|
2004-09-22 22:42:05 +04:00
|
|
|
void SetType(TargetType f, const char* name);
|
|
|
|
|
2007-05-22 18:24:59 +04:00
|
|
|
void MarkAsImported();
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2004-09-22 22:42:05 +04:00
|
|
|
///! Set/Get the name of the target
|
2007-05-09 16:25:45 +04:00
|
|
|
const char* GetName() const {return this->Name.c_str();}
|
2002-11-20 02:01:05 +03:00
|
|
|
|
2005-06-22 17:06:46 +04:00
|
|
|
///! Set the cmMakefile that owns this target
|
2006-02-16 23:19:00 +03:00
|
|
|
void SetMakefile(cmMakefile *mf);
|
2007-08-02 21:38:39 +04:00
|
|
|
cmMakefile *GetMakefile() const { return this->Makefile;};
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2008-03-13 23:23:18 +03:00
|
|
|
/** Get the status of policy CMP0003 when the target was created. */
|
|
|
|
cmPolicies::PolicyStatus GetPolicyStatusCMP0003() const
|
|
|
|
{ return this->PolicyStatusCMP0003; }
|
|
|
|
|
2008-03-13 23:35:39 +03:00
|
|
|
/** Get the status of policy CMP0004 when the target was created. */
|
|
|
|
cmPolicies::PolicyStatus GetPolicyStatusCMP0004() const
|
|
|
|
{ return this->PolicyStatusCMP0004; }
|
|
|
|
|
2008-07-23 20:59:14 +04:00
|
|
|
/** Get the status of policy CMP0008 when the target was created. */
|
|
|
|
cmPolicies::PolicyStatus GetPolicyStatusCMP0008() const
|
|
|
|
{ return this->PolicyStatusCMP0008; }
|
|
|
|
|
2001-04-19 21:28:46 +04:00
|
|
|
/**
|
|
|
|
* Get the list of the custom commands for this target
|
|
|
|
*/
|
2007-07-02 21:32:41 +04:00
|
|
|
std::vector<cmCustomCommand> &GetPreBuildCommands()
|
2006-03-15 19:02:08 +03:00
|
|
|
{return this->PreBuildCommands;}
|
2007-07-02 21:32:41 +04:00
|
|
|
std::vector<cmCustomCommand> &GetPreLinkCommands()
|
2006-03-15 19:02:08 +03:00
|
|
|
{return this->PreLinkCommands;}
|
2007-07-02 21:32:41 +04:00
|
|
|
std::vector<cmCustomCommand> &GetPostBuildCommands()
|
2006-03-15 19:02:08 +03:00
|
|
|
{return this->PostBuildCommands;}
|
2001-04-19 21:28:46 +04:00
|
|
|
|
2005-12-26 21:14:19 +03:00
|
|
|
///! Return the list of frameworks being linked to this target
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string> &GetFrameworks() {return this->Frameworks;}
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
/**
|
|
|
|
* Get the list of the source files used by this target
|
|
|
|
*/
|
2009-09-04 20:39:05 +04:00
|
|
|
std::vector<cmSourceFile*> const& GetSourceFiles();
|
|
|
|
void AddSourceFile(cmSourceFile* sf);
|
2001-04-25 00:49:12 +04:00
|
|
|
|
2009-09-07 18:11:43 +04:00
|
|
|
/** Get sources that must be built before the given source. */
|
|
|
|
std::vector<cmSourceFile*> const* GetSourceDepends(cmSourceFile* sf);
|
|
|
|
|
2007-10-10 19:06:15 +04:00
|
|
|
/**
|
|
|
|
* Flags for a given source file as used in this target. Typically assigned
|
|
|
|
* via SET_TARGET_PROPERTIES when the property is a list of source files.
|
|
|
|
*/
|
2008-02-19 00:38:34 +03:00
|
|
|
enum SourceFileType
|
|
|
|
{
|
|
|
|
SourceFileTypeNormal,
|
|
|
|
SourceFileTypePrivateHeader, // is in "PRIVATE_HEADER" target property
|
|
|
|
SourceFileTypePublicHeader, // is in "PUBLIC_HEADER" target property
|
|
|
|
SourceFileTypeResource, // is in "RESOURCE" target property *or*
|
|
|
|
// has MACOSX_PACKAGE_LOCATION=="Resources"
|
|
|
|
SourceFileTypeMacContent // has MACOSX_PACKAGE_LOCATION!="Resources"
|
|
|
|
};
|
2007-10-10 19:06:15 +04:00
|
|
|
struct SourceFileFlags
|
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
SourceFileFlags(): Type(SourceFileTypeNormal), MacFolder(0) {}
|
|
|
|
SourceFileFlags(SourceFileFlags const& r):
|
|
|
|
Type(r.Type), MacFolder(r.MacFolder) {}
|
|
|
|
SourceFileType Type;
|
|
|
|
const char* MacFolder; // location inside Mac content folders
|
2007-10-10 19:06:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the flags for a given source file as used in this target
|
|
|
|
*/
|
|
|
|
struct SourceFileFlags GetTargetSourceFileFlags(const cmSourceFile* sf);
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
/**
|
|
|
|
* Add sources to the target.
|
|
|
|
*/
|
|
|
|
void AddSources(std::vector<std::string> const& srcs);
|
|
|
|
cmSourceFile* AddSource(const char* src);
|
|
|
|
|
2001-04-30 18:44:00 +04:00
|
|
|
/**
|
|
|
|
* Get the list of the source files used by this target
|
|
|
|
*/
|
|
|
|
enum LinkLibraryType {GENERAL, DEBUG, OPTIMIZED};
|
2002-05-01 22:00:21 +04:00
|
|
|
|
2006-11-29 19:00:17 +03:00
|
|
|
//* how we identify a library, by name and type
|
|
|
|
typedef std::pair<cmStdString, LinkLibraryType> LibraryID;
|
|
|
|
|
|
|
|
typedef std::vector<LibraryID > LinkLibraryVectorType;
|
2007-06-15 18:10:24 +04:00
|
|
|
const LinkLibraryVectorType &GetLinkLibraries() const {
|
2007-07-02 21:32:41 +04:00
|
|
|
return this->LinkLibraries;}
|
2007-06-15 18:10:24 +04:00
|
|
|
const LinkLibraryVectorType &GetOriginalLinkLibraries() const
|
2006-03-15 19:02:08 +03:00
|
|
|
{return this->OriginalLinkLibraries;}
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2008-09-05 01:34:25 +04:00
|
|
|
/** Compute the link type to use for the given configuration. */
|
|
|
|
LinkLibraryType ComputeLinkType(const char* config);
|
|
|
|
|
2002-11-20 02:01:05 +03:00
|
|
|
/**
|
|
|
|
* Clear the dependency information recorded for this target, if any.
|
|
|
|
*/
|
|
|
|
void ClearDependencyInformation(cmMakefile& mf, const char* target);
|
|
|
|
|
2005-12-26 21:14:19 +03:00
|
|
|
// Check to see if a library is a framework and treat it different on Mac
|
2007-10-10 19:06:15 +04:00
|
|
|
bool NameResolvesToFramework(const std::string& libname);
|
2005-12-26 21:14:19 +03:00
|
|
|
bool AddFramework(const std::string& lib, LinkLibraryType llt);
|
2002-05-04 00:34:05 +04:00
|
|
|
void AddLinkLibrary(cmMakefile& mf,
|
2007-07-02 21:32:41 +04:00
|
|
|
const char *target, const char* lib,
|
2002-05-04 00:34:05 +04:00
|
|
|
LinkLibraryType llt);
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
void MergeLinkLibraries( cmMakefile& mf, const char* selfname,
|
2006-03-15 19:02:08 +03:00
|
|
|
const LinkLibraryVectorType& libs );
|
2002-05-04 00:34:05 +04:00
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
const std::vector<std::string>& GetLinkDirectories();
|
|
|
|
|
2002-05-04 00:34:05 +04:00
|
|
|
void AddLinkDirectory(const char* d);
|
2001-05-23 19:31:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the path where this target should be installed. This is relative to
|
|
|
|
* INSTALL_PREFIX
|
|
|
|
*/
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string GetInstallPath() {return this->InstallPath;}
|
|
|
|
void SetInstallPath(const char *name) {this->InstallPath = name;}
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2004-01-27 20:37:30 +03:00
|
|
|
/**
|
|
|
|
* Set the path where this target (if it has a runtime part) should be
|
|
|
|
* installed. This is relative to INSTALL_PREFIX
|
|
|
|
*/
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string GetRuntimeInstallPath() {return this->RuntimeInstallPath;}
|
2006-05-12 22:12:13 +04:00
|
|
|
void SetRuntimeInstallPath(const char *name) {
|
2007-08-24 21:30:41 +04:00
|
|
|
this->RuntimeInstallPath = name; }
|
2006-02-20 01:27:47 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get/Set whether there is an install rule for this target.
|
|
|
|
*/
|
2006-03-15 19:02:08 +03:00
|
|
|
bool GetHaveInstallRule() { return this->HaveInstallRule; }
|
|
|
|
void SetHaveInstallRule(bool h) { this->HaveInstallRule = h; }
|
2006-02-20 01:27:47 +03:00
|
|
|
|
2001-06-07 22: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 21:32:41 +04:00
|
|
|
* commands. It is not a full path nor does it have an extension.
|
2001-06-07 22:52:29 +04:00
|
|
|
*/
|
2006-03-15 19:02:08 +03:00
|
|
|
void AddUtility(const char* u) { this->Utilities.insert(u);}
|
2001-06-07 22:52:29 +04:00
|
|
|
///! Get the utilities used by this target
|
2007-12-23 23:03:42 +03:00
|
|
|
std::set<cmStdString>const& GetUtilities() const { return this->Utilities; }
|
2001-06-13 21:49:24 +04:00
|
|
|
|
2009-10-05 17:06:29 +04:00
|
|
|
/** Finalize the target at the end of the Configure step. */
|
|
|
|
void FinishConfigure();
|
2002-05-01 22:00:21 +04:00
|
|
|
|
2002-12-21 01:15:45 +03:00
|
|
|
///! Set/Get a property of this target file
|
|
|
|
void SetProperty(const char *prop, const char *value);
|
2008-01-18 02:13:55 +03:00
|
|
|
void AppendProperty(const char* prop, const char* value);
|
2005-06-22 17:06:46 +04:00
|
|
|
const char *GetProperty(const char *prop);
|
2006-12-07 17:45:32 +03:00
|
|
|
const char *GetProperty(const char *prop, cmProperty::ScopeType scope);
|
2005-06-22 17:06:46 +04:00
|
|
|
bool GetPropertyAsBool(const char *prop);
|
2008-08-19 19:43:51 +04:00
|
|
|
void CheckProperty(const char* prop, cmMakefile* context);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2009-10-02 21:52:01 +04:00
|
|
|
const char* GetFeature(const char* feature, const char* config);
|
|
|
|
|
2007-05-22 18:24:59 +04:00
|
|
|
bool IsImported() const {return this->IsImportedTarget;}
|
2002-12-21 01:15:45 +03:00
|
|
|
|
2009-07-07 18:56:51 +04:00
|
|
|
/** The link interface specifies transitive library dependencies and
|
|
|
|
other information needed by targets that link to this target. */
|
2009-07-07 17:45:29 +04:00
|
|
|
struct LinkInterface
|
|
|
|
{
|
2009-07-10 21:53:28 +04:00
|
|
|
// Languages whose runtime libraries must be linked.
|
|
|
|
std::vector<std::string> Languages;
|
|
|
|
|
2009-07-07 17:45:29 +04:00
|
|
|
// Libraries listed in the interface.
|
|
|
|
std::vector<std::string> Libraries;
|
|
|
|
|
|
|
|
// Shared library dependencies needed for linking on some platforms.
|
|
|
|
std::vector<std::string> SharedDeps;
|
|
|
|
|
2009-09-01 18:37:37 +04:00
|
|
|
// Number of repetitions of a strongly connected component of two
|
|
|
|
// or more static libraries.
|
|
|
|
int Multiplicity;
|
|
|
|
|
2009-07-07 17:45:29 +04:00
|
|
|
// Libraries listed for other configurations.
|
|
|
|
// Needed only for OLD behavior of CMP0003.
|
|
|
|
std::vector<std::string> WrongConfigLibraries;
|
2009-09-01 18:37:37 +04:00
|
|
|
|
|
|
|
LinkInterface(): Multiplicity(0) {}
|
2009-07-07 17:45:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Get the link interface for the given configuration. Returns 0
|
|
|
|
if the target cannot be linked. */
|
|
|
|
LinkInterface const* GetLinkInterface(const char* config);
|
2008-01-31 01:25:52 +03:00
|
|
|
|
2009-07-08 20:04:48 +04:00
|
|
|
/** The link implementation specifies the direct library
|
|
|
|
dependencies needed by the object files of the target. */
|
|
|
|
struct LinkImplementation
|
|
|
|
{
|
2009-07-10 21:53:28 +04:00
|
|
|
// Languages whose runtime libraries must be linked.
|
|
|
|
std::vector<std::string> Languages;
|
|
|
|
|
2009-07-08 20:04:48 +04:00
|
|
|
// Libraries linked directly in this configuration.
|
|
|
|
std::vector<std::string> Libraries;
|
|
|
|
|
|
|
|
// Libraries linked directly in other configurations.
|
|
|
|
// Needed only for OLD behavior of CMP0003.
|
|
|
|
std::vector<std::string> WrongConfigLibraries;
|
|
|
|
};
|
|
|
|
LinkImplementation const* GetLinkImplementation(const char* config);
|
|
|
|
|
2009-07-10 21:53:28 +04:00
|
|
|
/** Link information from the transitive closure of the link
|
|
|
|
implementation and the interfaces of its dependencies. */
|
|
|
|
struct LinkClosure
|
|
|
|
{
|
|
|
|
// The preferred linker language.
|
|
|
|
std::string LinkerLanguage;
|
|
|
|
|
|
|
|
// Languages whose runtime libraries must be linked.
|
|
|
|
std::vector<std::string> Languages;
|
|
|
|
};
|
|
|
|
LinkClosure const* GetLinkClosure(const char* config);
|
|
|
|
|
2009-07-07 00:24:45 +04:00
|
|
|
/** Strip off leading and trailing whitespace from an item named in
|
|
|
|
the link dependencies of this target. */
|
|
|
|
std::string CheckCMP0004(std::string const& item);
|
|
|
|
|
2006-02-24 21:13:14 +03:00
|
|
|
/** Get the directory in which this target will be built. If the
|
|
|
|
configuration name is given then the generator will add its
|
|
|
|
subdirectory for that configuration. Otherwise just the canonical
|
|
|
|
output directory is given. */
|
2008-04-08 08:06:47 +04:00
|
|
|
std::string GetDirectory(const char* config = 0, bool implib = false);
|
2006-02-24 21:13:14 +03:00
|
|
|
|
|
|
|
/** Get the location of the target in the build tree for the given
|
|
|
|
configuration. This location is suitable for use as the LOCATION
|
|
|
|
target property. */
|
2006-01-14 02:18:32 +03:00
|
|
|
const char* GetLocation(const char* config);
|
|
|
|
|
2006-10-17 02:17:14 +04:00
|
|
|
/** Get the target major and minor version numbers interpreted from
|
|
|
|
the VERSION property. Version 0 is returned if the property is
|
|
|
|
not set or cannot be parsed. */
|
|
|
|
void GetTargetVersion(int& major, int& minor);
|
|
|
|
|
2008-07-09 18:09:00 +04:00
|
|
|
/** Get the target major, minor, and patch version numbers
|
|
|
|
interpreted from the VERSION or SOVERSION property. Version 0
|
|
|
|
is returned if the property is not set or cannot be parsed. */
|
|
|
|
void GetTargetVersion(bool soversion, int& major, int& minor, int& patch);
|
|
|
|
|
2003-06-24 23:10:47 +04:00
|
|
|
/**
|
|
|
|
* Trace through the source files in this target and add al source files
|
2007-05-09 16:25:45 +04:00
|
|
|
* that they depend on, used by all generators
|
2003-06-24 23:10:47 +04:00
|
|
|
*/
|
2007-06-18 19:59:23 +04:00
|
|
|
void TraceDependencies(const char* vsProjectFile);
|
2003-06-24 23:10:47 +04:00
|
|
|
|
2008-05-13 01:43:45 +04:00
|
|
|
/**
|
|
|
|
* Make sure the full path to all source files is known.
|
|
|
|
*/
|
|
|
|
bool FindSourceFiles();
|
|
|
|
|
2004-09-22 22:42:05 +04:00
|
|
|
///! Return the prefered linker language for this target
|
2009-07-08 21:04:04 +04:00
|
|
|
const char* GetLinkerLanguage(const char* config = 0);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
|
|
|
///! Return the rule variable used to create this type of target,
|
2004-10-21 22:34:02 +04:00
|
|
|
// need to add CMAKE_(LANG) for full name.
|
|
|
|
const char* GetCreateRuleVariable();
|
2005-04-22 23:23:21 +04:00
|
|
|
|
2005-12-14 18:47:33 +03:00
|
|
|
/** Get the full name of the target according to the settings in its
|
|
|
|
makefile. */
|
2006-02-18 23:37:23 +03:00
|
|
|
std::string GetFullName(const char* config=0, bool implib = false);
|
2008-01-28 16:38:36 +03:00
|
|
|
void GetFullNameComponents(std::string& prefix,
|
|
|
|
std::string& base, std::string& suffix,
|
|
|
|
const char* config=0, bool implib = false);
|
2007-02-02 00:54:49 +03:00
|
|
|
|
|
|
|
/** Get the name of the pdb file for the target. */
|
|
|
|
std::string GetPDBName(const char* config=0);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
/** Get the soname of the target. Allowed only for a shared library. */
|
|
|
|
std::string GetSOName(const char* config);
|
|
|
|
|
2008-02-21 19:41:11 +03:00
|
|
|
/** Test for special case of a third-party shared library that has
|
|
|
|
no soname at all. */
|
|
|
|
bool IsImportedSharedLibWithoutSOName(const char* config);
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
/** Get the full path to the target according to the settings in its
|
|
|
|
makefile and the configuration type. */
|
2008-02-06 21:34:44 +03:00
|
|
|
std::string GetFullPath(const char* config=0, bool implib = false,
|
|
|
|
bool realname = false);
|
2005-04-23 00:11:00 +04:00
|
|
|
|
|
|
|
/** Get the names of the library needed to generate a build rule
|
|
|
|
that takes into account shared library version numbers. This
|
|
|
|
should be called only on a library target. */
|
2006-01-14 02:18:32 +03:00
|
|
|
void GetLibraryNames(std::string& name, std::string& soName,
|
2006-02-18 23:37:23 +03:00
|
|
|
std::string& realName, std::string& impName,
|
2007-02-01 17:57:24 +03:00
|
|
|
std::string& pdbName, const char* config);
|
2005-04-23 00:11:00 +04:00
|
|
|
|
2005-08-18 00:11:18 +04:00
|
|
|
/** Get the names of the executable needed to generate a build rule
|
|
|
|
that takes into account executable version numbers. This should
|
|
|
|
be called only on an executable target. */
|
2006-01-14 02:18:32 +03:00
|
|
|
void GetExecutableNames(std::string& name, std::string& realName,
|
2007-03-19 17:00:36 +03:00
|
|
|
std::string& impName,
|
2007-02-01 17:57:24 +03:00
|
|
|
std::string& pdbName, const char* config);
|
2005-08-18 00:11:18 +04:00
|
|
|
|
2008-01-22 17:13:04 +03:00
|
|
|
/** Add the target output files to the global generator manifest. */
|
|
|
|
void GenerateTargetManifest(const char* config);
|
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
/**
|
|
|
|
* Compute whether this target must be relinked before installing.
|
|
|
|
*/
|
2009-07-08 21:03:47 +04:00
|
|
|
bool NeedRelinkBeforeInstall(const char* config);
|
2006-02-16 23:19:00 +03:00
|
|
|
|
|
|
|
bool HaveBuildTreeRPATH();
|
|
|
|
bool HaveInstallTreeRPATH();
|
2008-01-29 23:07:33 +03:00
|
|
|
|
2008-03-01 20:51:07 +03:00
|
|
|
/** Return true if builtin chrpath will work for this target */
|
2009-07-08 21:03:47 +04:00
|
|
|
bool IsChrpathUsed(const char* config);
|
2006-02-16 23:19:00 +03:00
|
|
|
|
2008-04-08 08:06:47 +04:00
|
|
|
std::string GetInstallNameDirForBuildTree(const char* config,
|
|
|
|
bool for_xcode = false);
|
|
|
|
std::string GetInstallNameDirForInstallTree(const char* config,
|
|
|
|
bool for_xcode = false);
|
2006-02-24 21:13:14 +03:00
|
|
|
|
2008-01-29 23:07:33 +03:00
|
|
|
cmComputeLinkInformation* GetLinkInformation(const char* config);
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
// Get the properties
|
|
|
|
cmPropertyMap &GetProperties() { return this->Properties; };
|
|
|
|
|
|
|
|
// Define the properties
|
|
|
|
static void DefineProperties(cmake *cm);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2007-02-17 00:12:17 +03:00
|
|
|
// Compute the OBJECT_FILES property only when requested
|
|
|
|
void ComputeObjectFiles();
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2007-03-28 07:13:25 +04:00
|
|
|
/** Get the macro to define when building sources in this target.
|
|
|
|
If no macro should be defined null is returned. */
|
|
|
|
const char* GetExportMacro();
|
|
|
|
|
2007-08-02 21:38:39 +04:00
|
|
|
// Compute the set of languages compiled by the target. This is
|
|
|
|
// computed every time it is called because the languages can change
|
|
|
|
// when source file properties are changed and we do not have enough
|
|
|
|
// information to forward these property changes to the targets
|
|
|
|
// until we have per-target object file properties.
|
|
|
|
void GetLanguages(std::set<cmStdString>& languages) const;
|
|
|
|
|
2009-10-21 21:00:49 +04:00
|
|
|
/** Get the list of OS X target architectures to be built. */
|
|
|
|
void GetAppleArchs(const char* config, std::vector<std::string>& archVec);
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
/** Return whether this target is an executable with symbol exports
|
|
|
|
enabled. */
|
|
|
|
bool IsExecutableWithExports();
|
|
|
|
|
2008-08-18 19:39:22 +04:00
|
|
|
/** Return whether this target may be used to link another target. */
|
|
|
|
bool IsLinkable();
|
|
|
|
|
2009-08-11 17:07:42 +04:00
|
|
|
/** Return whether or not the target is for a DLL platform. */
|
|
|
|
bool IsDLLPlatform() { return this->DLLPlatform; }
|
|
|
|
|
|
|
|
/** Return whether or not the target has a DLL import library. */
|
|
|
|
bool HasImportLibrary();
|
|
|
|
|
2008-01-28 21:05:58 +03:00
|
|
|
/** Return whether this target is a shared library Framework on
|
|
|
|
Apple. */
|
|
|
|
bool IsFrameworkOnApple();
|
|
|
|
|
2008-01-28 22:46:16 +03:00
|
|
|
/** Return whether this target is an executable Bundle on Apple. */
|
|
|
|
bool IsAppBundleOnApple();
|
|
|
|
|
2008-04-08 08:06:47 +04:00
|
|
|
/** Return the framework version string. Undefined if
|
|
|
|
IsFrameworkOnApple returns false. */
|
|
|
|
std::string GetFrameworkVersion();
|
|
|
|
|
2008-03-13 20:48:57 +03:00
|
|
|
/** Get a backtrace from the creation of the target. */
|
|
|
|
cmListFileBacktrace const& GetBacktrace() const;
|
|
|
|
|
2009-02-10 16:50:09 +03:00
|
|
|
/** Get a build-tree directory in which to place target support files. */
|
|
|
|
std::string GetSupportDirectory() const;
|
|
|
|
|
2002-05-01 22:00:21 +04:00
|
|
|
private:
|
2002-11-20 02:01:05 +03:00
|
|
|
/**
|
|
|
|
* A list of direct dependencies. Use in conjunction with DependencyMap.
|
|
|
|
*/
|
2006-11-29 19:00:17 +03:00
|
|
|
typedef std::vector< LibraryID > DependencyList;
|
2002-11-20 02:01:05 +03:00
|
|
|
|
2002-05-01 22:00:21 +04:00
|
|
|
/**
|
|
|
|
* This map holds the dependency graph. map[x] returns a set of
|
2002-11-20 02:01:05 +03:00
|
|
|
* direct dependencies of x. Note that the direct depenencies are
|
|
|
|
* ordered. This is necessary to handle direct dependencies that
|
|
|
|
* themselves have no dependency information.
|
2002-05-01 22:00:21 +04:00
|
|
|
*/
|
2006-11-29 19:00:17 +03:00
|
|
|
typedef std::map< LibraryID, DependencyList > DependencyMap;
|
2002-05-02 21:41:40 +04:00
|
|
|
|
2002-05-01 22:00:21 +04:00
|
|
|
/**
|
2002-11-20 02:01:05 +03:00
|
|
|
* Inserts \a dep at the end of the dependency list of \a lib.
|
|
|
|
*/
|
|
|
|
void InsertDependency( DependencyMap& depMap,
|
2006-11-29 19:00:17 +03:00
|
|
|
const LibraryID& lib,
|
|
|
|
const LibraryID& dep);
|
2002-11-20 02:01:05 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Deletes \a dep from the dependency list of \a lib.
|
|
|
|
*/
|
|
|
|
void DeleteDependency( DependencyMap& depMap,
|
2006-11-29 19:00:17 +03:00
|
|
|
const LibraryID& lib,
|
|
|
|
const LibraryID& dep);
|
2002-11-20 02:01:05 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Emits the library \a lib and all its dependencies into link_line.
|
|
|
|
* \a emitted keeps track of the libraries that have been emitted to
|
|
|
|
* avoid duplicates--it is more efficient than searching
|
|
|
|
* link_line. \a visited is used detect cycles. Note that \a
|
|
|
|
* link_line is in reverse order, in that the dependencies of a
|
|
|
|
* library are listed before the library itself.
|
2002-05-01 22:00:21 +04:00
|
|
|
*/
|
2006-11-29 19:00:17 +03:00
|
|
|
void Emit( const LibraryID lib,
|
2002-05-01 22:00:21 +04:00
|
|
|
const DependencyMap& dep_map,
|
2006-11-29 19:00:17 +03:00
|
|
|
std::set<LibraryID>& emitted,
|
|
|
|
std::set<LibraryID>& visited,
|
|
|
|
DependencyList& link_line);
|
2002-05-01 22:00:21 +04:00
|
|
|
|
|
|
|
/**
|
2002-11-20 02:01:05 +03:00
|
|
|
* Finds the dependencies for \a lib and inserts them into \a
|
|
|
|
* dep_map.
|
2002-05-01 22:00:21 +04:00
|
|
|
*/
|
2007-07-02 21:32:41 +04:00
|
|
|
void GatherDependencies( const cmMakefile& mf,
|
2006-11-29 19:00:17 +03:00
|
|
|
const LibraryID& lib,
|
2007-07-02 21:32:41 +04:00
|
|
|
DependencyMap& dep_map);
|
2002-12-21 01:15:45 +03:00
|
|
|
|
2009-10-05 17:06:29 +04:00
|
|
|
void AnalyzeLibDependencies( const cmMakefile& mf );
|
|
|
|
|
2009-05-01 18:39:44 +04:00
|
|
|
const char* GetSuffixVariableInternal(bool implib);
|
|
|
|
const char* GetPrefixVariableInternal(bool implib);
|
|
|
|
std::string GetFullNameInternal(const char* config, bool implib);
|
|
|
|
void GetFullNameInternal(const char* config, bool implib,
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string& outPrefix, std::string& outBase,
|
|
|
|
std::string& outSuffix);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
// Use a makefile variable to set a default for the given property.
|
|
|
|
// If the variable is not defined use the given default instead.
|
|
|
|
void SetPropertyDefault(const char* property, const char* default_value);
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2009-05-01 17:45:19 +04:00
|
|
|
// Returns ARCHIVE, LIBRARY, or RUNTIME based on platform and type.
|
|
|
|
const char* GetOutputTargetType(bool implib);
|
|
|
|
|
2009-05-01 17:45:43 +04:00
|
|
|
// Get the target base name.
|
|
|
|
std::string GetOutputName(const char* config, bool implib);
|
|
|
|
|
2007-05-22 18:24:59 +04:00
|
|
|
const char* ImportedGetLocation(const char* config);
|
|
|
|
const char* NormalGetLocation(const char* config);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
std::string GetFullNameImported(const char* config, bool implib);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
std::string ImportedGetFullPath(const char* config, bool implib);
|
2008-02-06 21:34:44 +03:00
|
|
|
std::string NormalGetFullPath(const char* config, bool implib,
|
|
|
|
bool realname);
|
|
|
|
|
|
|
|
/** Get the real name of the target. Allowed only for non-imported
|
|
|
|
targets. When a library or executable file is versioned this is
|
|
|
|
the full versioned name. If the target is not versioned this is
|
|
|
|
the same as GetFullName. */
|
|
|
|
std::string NormalGetRealName(const char* config);
|
2008-01-28 16:38:36 +03:00
|
|
|
|
2001-04-19 21:28:46 +04:00
|
|
|
private:
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string Name;
|
|
|
|
std::vector<cmCustomCommand> PreBuildCommands;
|
|
|
|
std::vector<cmCustomCommand> PreLinkCommands;
|
|
|
|
std::vector<cmCustomCommand> PostBuildCommands;
|
|
|
|
TargetType TargetTypeValue;
|
|
|
|
std::vector<cmSourceFile*> SourceFiles;
|
|
|
|
LinkLibraryVectorType LinkLibraries;
|
|
|
|
LinkLibraryVectorType PrevLinkedLibraries;
|
|
|
|
bool LinkLibrariesAnalyzed;
|
|
|
|
std::vector<std::string> Frameworks;
|
|
|
|
std::vector<std::string> LinkDirectories;
|
2008-01-22 17:13:04 +03:00
|
|
|
std::set<cmStdString> LinkDirectoriesEmmitted;
|
2006-03-15 19:02:08 +03:00
|
|
|
bool HaveInstallRule;
|
|
|
|
std::string InstallPath;
|
|
|
|
std::string RuntimeInstallPath;
|
|
|
|
std::string Location;
|
2007-03-28 07:13:25 +04:00
|
|
|
std::string ExportMacro;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::set<cmStdString> Utilities;
|
2007-07-02 21:32:41 +04:00
|
|
|
bool RecordDependencies;
|
2006-12-07 17:45:32 +03:00
|
|
|
cmPropertyMap Properties;
|
2006-03-15 19:02:08 +03:00
|
|
|
LinkLibraryVectorType OriginalLinkLibraries;
|
2007-03-19 17:00:36 +03:00
|
|
|
bool DLLPlatform;
|
2007-05-22 18:24:59 +04:00
|
|
|
bool IsImportedTarget;
|
2006-01-14 02:18:32 +03:00
|
|
|
|
2009-07-03 18:33:59 +04:00
|
|
|
// Cache target output paths for each configuration.
|
2009-07-08 16:31:30 +04:00
|
|
|
struct OutputInfo;
|
2009-07-03 18:33:59 +04:00
|
|
|
OutputInfo const* GetOutputInfo(const char* config);
|
|
|
|
void ComputeOutputDir(const char* config, bool implib, std::string& out);
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
// Cache import information from properties for each configuration.
|
2009-07-08 16:31:30 +04:00
|
|
|
struct ImportInfo;
|
2008-01-28 16:38:36 +03:00
|
|
|
ImportInfo const* GetImportInfo(const char* config);
|
|
|
|
void ComputeImportInfo(std::string const& desired_config, ImportInfo& info);
|
|
|
|
|
2008-01-30 01:30:34 +03:00
|
|
|
cmTargetLinkInformationMap LinkInformation;
|
2008-01-29 23:07:33 +03:00
|
|
|
|
2009-07-07 17:45:29 +04:00
|
|
|
bool ComputeLinkInterface(const char* config, LinkInterface& iface);
|
2008-01-31 01:25:52 +03:00
|
|
|
|
2009-07-08 20:04:48 +04:00
|
|
|
void ComputeLinkImplementation(const char* config,
|
|
|
|
LinkImplementation& impl);
|
2009-07-10 21:53:28 +04:00
|
|
|
void ComputeLinkClosure(const char* config, LinkClosure& lc);
|
2009-07-08 20:04:48 +04:00
|
|
|
|
2009-10-05 17:06:59 +04:00
|
|
|
void ClearLinkMaps();
|
|
|
|
|
2009-10-05 17:06:44 +04:00
|
|
|
void MaybeInvalidatePropertyCache(const char* prop);
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
// The cmMakefile instance that owns this target. This should
|
|
|
|
// always be set.
|
2006-03-15 19:02:08 +03:00
|
|
|
cmMakefile* Makefile;
|
2008-02-19 00:38:34 +03:00
|
|
|
|
2008-03-13 23:23:18 +03:00
|
|
|
// Policy status recorded when target was created.
|
|
|
|
cmPolicies::PolicyStatus PolicyStatusCMP0003;
|
2008-03-13 23:35:39 +03:00
|
|
|
cmPolicies::PolicyStatus PolicyStatusCMP0004;
|
2008-07-23 20:59:14 +04:00
|
|
|
cmPolicies::PolicyStatus PolicyStatusCMP0008;
|
2008-03-13 23:23:18 +03:00
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
// Internal representation details.
|
|
|
|
friend class cmTargetInternals;
|
|
|
|
cmTargetInternalPointer Internal;
|
|
|
|
|
|
|
|
void ConstructSourceFileFlags();
|
2001-04-11 22:59:02 +04:00
|
|
|
};
|
|
|
|
|
2001-08-22 19:58:17 +04:00
|
|
|
typedef std::map<cmStdString,cmTarget> cmTargets;
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2006-04-04 19:48:19 +04:00
|
|
|
class cmTargetSet: public std::set<cmStdString> {};
|
|
|
|
class cmTargetManifest: public std::map<cmStdString, cmTargetSet> {};
|
|
|
|
|
2001-04-11 22:59:02 +04:00
|
|
|
#endif
|