2001-04-11 22:59:02 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-11 22:59:02 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-01-21 23:30:43 +03:00
|
|
|
PURPOSE. See the above copyright notices 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"
|
2005-02-19 00:12:08 +03:00
|
|
|
|
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;
|
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-01-31 23:45:31 +03:00
|
|
|
struct cmTargetLinkInterface
|
2008-01-31 01:25:52 +03:00
|
|
|
{
|
2008-01-31 23:45:31 +03: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;
|
2008-01-31 01:25:52 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cmTargetLinkInterfaceMap:
|
|
|
|
public std::map<cmStdString, cmTargetLinkInterface*>
|
|
|
|
{
|
|
|
|
typedef std::map<cmStdString, cmTargetLinkInterface*> derived;
|
|
|
|
cmTargetLinkInterfaceMap() {}
|
|
|
|
cmTargetLinkInterfaceMap(cmTargetLinkInterfaceMap const& r);
|
|
|
|
~cmTargetLinkInterfaceMap();
|
|
|
|
};
|
|
|
|
|
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,
|
2006-03-28 22:16:15 +04:00
|
|
|
INSTALL_FILES, INSTALL_PROGRAMS, INSTALL_DIRECTORY};
|
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
|
|
|
|
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
|
|
|
|
*/
|
2007-05-28 18:25:03 +04:00
|
|
|
std::vector<cmSourceFile*> const &GetSourceFiles()
|
|
|
|
{return this->SourceFiles;}
|
|
|
|
void AddSourceFile(cmSourceFile* sf) { this->SourceFiles.push_back(sf); }
|
2001-04-25 00:49:12 +04:00
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
struct SourceFileFlags
|
|
|
|
{
|
|
|
|
bool PrivateHeader; // source is in "PRIVATE_HEADER" target property
|
|
|
|
bool PublicHeader; // source is in "PUBLIC_HEADER" target property
|
|
|
|
bool Resource; // source is in "RESOURCE" target property *or*
|
|
|
|
// source has MACOSX_PACKAGE_LOCATION=="Resources"
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
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 AddLinkLibrary(const std::string& 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
|
|
|
|
2002-05-01 22:00:21 +04:00
|
|
|
void AnalyzeLibDependencies( const cmMakefile& mf );
|
|
|
|
|
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);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2007-05-22 18:24:59 +04:00
|
|
|
bool IsImported() const {return this->IsImportedTarget;}
|
2002-12-21 01:15:45 +03:00
|
|
|
|
2008-01-31 01:25:52 +03:00
|
|
|
/** Get the library interface dependencies. This is the set of
|
|
|
|
libraries from which something that links to this target may
|
|
|
|
also receive symbols. Returns 0 if the user has not specified
|
|
|
|
such dependencies or for static libraries. */
|
|
|
|
cmTargetLinkInterface const* GetLinkInterface(const char* config);
|
|
|
|
|
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. */
|
2007-03-09 17:30:16 +03:00
|
|
|
const char* 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);
|
|
|
|
|
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
|
|
|
|
2004-09-22 22:42:05 +04:00
|
|
|
///! Return the prefered linker language for this target
|
2005-06-22 17:06:46 +04:00
|
|
|
const char* GetLinkerLanguage(cmGlobalGenerator*);
|
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);
|
|
|
|
|
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
|
|
|
|
|
|
|
/** Get the names of the library used to remove existing copies of
|
|
|
|
the library from the build tree either before linking or during
|
|
|
|
a clean step. This should be called only on a library
|
|
|
|
target. */
|
2005-12-14 18:47:33 +03:00
|
|
|
void GetLibraryCleanNames(std::string& staticName,
|
2005-04-23 00:11:00 +04:00
|
|
|
std::string& sharedName,
|
|
|
|
std::string& sharedSOName,
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string& sharedRealName,
|
2006-02-18 23:37:23 +03:00
|
|
|
std::string& importName,
|
2007-02-01 17:57:24 +03:00
|
|
|
std::string& pdbName,
|
2006-01-14 02:18:32 +03:00
|
|
|
const char* config);
|
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
|
|
|
|
|
|
|
/** Get the names of the executable used to remove existing copies
|
|
|
|
of the executable from the build tree either before linking or
|
|
|
|
during a clean step. This should be called only on an
|
|
|
|
executable target. */
|
2006-01-14 02:18:32 +03:00
|
|
|
void GetExecutableCleanNames(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);
|
2006-02-16 23:19:00 +03: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.
|
|
|
|
*/
|
|
|
|
bool NeedRelinkBeforeInstall();
|
|
|
|
|
|
|
|
bool HaveBuildTreeRPATH();
|
|
|
|
bool HaveInstallTreeRPATH();
|
2008-01-29 23:07:33 +03:00
|
|
|
|
|
|
|
/** Return true if chrpath might work for this target */
|
|
|
|
bool IsChrpathUsed();
|
2006-02-16 23:19:00 +03:00
|
|
|
|
2006-02-24 21:13:14 +03:00
|
|
|
std::string GetInstallNameDirForBuildTree(const char* config);
|
|
|
|
std::string GetInstallNameDirForInstallTree(const char* config);
|
|
|
|
|
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;
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
/** Return whether this target is an executable with symbol exports
|
|
|
|
enabled. */
|
|
|
|
bool IsExecutableWithExports();
|
|
|
|
|
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();
|
|
|
|
|
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
|
|
|
|
2006-02-18 23:37:23 +03:00
|
|
|
const char* GetSuffixVariableInternal(TargetType type, bool implib);
|
|
|
|
const char* GetPrefixVariableInternal(TargetType type, bool implib);
|
|
|
|
std::string GetFullNameInternal(TargetType type, const char* config,
|
|
|
|
bool implib);
|
|
|
|
void GetFullNameInternal(TargetType type, 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
|
|
|
|
2005-12-14 18:47:33 +03:00
|
|
|
void GetLibraryNamesInternal(std::string& name,
|
2005-04-23 00:11:00 +04:00
|
|
|
std::string& soName,
|
|
|
|
std::string& realName,
|
2006-02-18 23:37:23 +03:00
|
|
|
std::string& impName,
|
2007-02-01 17:57:24 +03:00
|
|
|
std::string& pdbName,
|
2006-01-14 02:18:32 +03:00
|
|
|
TargetType type,
|
|
|
|
const char* config);
|
2005-12-14 18:47:33 +03:00
|
|
|
void GetExecutableNamesInternal(std::string& name,
|
2005-08-18 00:11:18 +04:00
|
|
|
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,
|
2006-01-14 02:18:32 +03:00
|
|
|
TargetType type,
|
|
|
|
const char* config);
|
2005-06-22 17:06:46 +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
|
|
|
|
2007-10-10 19:06:15 +04:00
|
|
|
// Get the full path to the target output directory.
|
|
|
|
const char* GetAndCreateOutputDir(bool implib, bool create);
|
|
|
|
|
2007-03-08 23:33:19 +03:00
|
|
|
// Get the full path to the target output directory.
|
2007-03-09 17:30:16 +03:00
|
|
|
const char* GetOutputDir(bool implib);
|
2007-03-08 23:33:19 +03:00
|
|
|
|
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
|
|
|
|
2007-05-22 18:24:59 +04:00
|
|
|
const char* ImportedGetDirectory(const char* config, bool implib);
|
|
|
|
const char* NormalGetDirectory(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;
|
2007-03-08 22:57:28 +03:00
|
|
|
std::string OutputDir;
|
2007-03-09 23:14:27 +03:00
|
|
|
std::string OutputDirImplib;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string Directory;
|
|
|
|
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
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
// Cache import information from properties for each configuration.
|
|
|
|
struct ImportInfo
|
|
|
|
{
|
|
|
|
std::string Location;
|
|
|
|
std::string SOName;
|
|
|
|
std::string ImportLibrary;
|
2008-01-31 23:45:31 +03:00
|
|
|
cmTargetLinkInterface LinkInterface;
|
2008-01-28 16:38:36 +03:00
|
|
|
};
|
|
|
|
typedef std::map<cmStdString, ImportInfo> ImportInfoMapType;
|
|
|
|
ImportInfoMapType ImportInfoMap;
|
|
|
|
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
|
|
|
|
2008-01-31 01:25:52 +03:00
|
|
|
// Link interface.
|
|
|
|
cmTargetLinkInterface* ComputeLinkInterface(const char* config);
|
|
|
|
cmTargetLinkInterfaceMap LinkInterface;
|
|
|
|
|
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;
|
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
|