2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-04-25 00:49:12 +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-25 00:49:12 +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-25 00:49:12 +04:00
|
|
|
#include "cmTarget.h"
|
2006-12-07 17:45:32 +03:00
|
|
|
#include "cmake.h"
|
2001-04-25 00:49:12 +04:00
|
|
|
#include "cmMakefile.h"
|
2002-09-28 00:24:10 +04:00
|
|
|
#include "cmSourceFile.h"
|
2005-04-22 23:23:21 +04:00
|
|
|
#include "cmLocalGenerator.h"
|
2004-09-22 22:42:05 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
2012-11-05 19:14:02 +04:00
|
|
|
#include "cmComputeLinkInformation.h"
|
2011-01-17 15:55:48 +03:00
|
|
|
#include "cmDocumentCompileDefinitions.h"
|
2012-09-29 20:31:47 +04:00
|
|
|
#include "cmDocumentGeneratorExpressions.h"
|
2011-12-02 00:41:01 +04:00
|
|
|
#include "cmDocumentLocationUndefined.h"
|
2008-03-13 20:48:57 +03:00
|
|
|
#include "cmListFileCache.h"
|
2010-12-09 00:13:07 +03:00
|
|
|
#include "cmGeneratorExpression.h"
|
2012-11-20 01:47:30 +04:00
|
|
|
#include "cmGeneratorExpressionDAGChecker.h"
|
2008-08-19 19:43:51 +04:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
2002-05-01 22:00:21 +04:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
2003-06-24 23:10:47 +04:00
|
|
|
#include <queue>
|
2003-05-24 18:07:58 +04:00
|
|
|
#include <stdlib.h> // required for atof
|
2008-01-30 01:30:34 +03:00
|
|
|
#include <assert.h>
|
2011-03-20 19:57:42 +03:00
|
|
|
|
|
|
|
const char* cmTarget::GetTargetTypeName(TargetType targetType)
|
|
|
|
{
|
|
|
|
switch( targetType )
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
return "STATIC_LIBRARY";
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
return "MODULE_LIBRARY";
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
return "SHARED_LIBRARY";
|
2012-03-12 18:47:40 +04:00
|
|
|
case cmTarget::OBJECT_LIBRARY:
|
|
|
|
return "OBJECT_LIBRARY";
|
2011-03-20 19:57:42 +03:00
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
return "EXECUTABLE";
|
|
|
|
case cmTarget::UTILITY:
|
|
|
|
return "UTILITY";
|
|
|
|
case cmTarget::GLOBAL_TARGET:
|
|
|
|
return "GLOBAL_TARGET";
|
|
|
|
case cmTarget::UNKNOWN_LIBRARY:
|
|
|
|
return "UNKNOWN_LIBRARY";
|
|
|
|
}
|
|
|
|
assert(0 && "Unexpected target type");
|
|
|
|
return 0;
|
|
|
|
}
|
2002-05-01 22:00:21 +04:00
|
|
|
|
2009-07-08 16:31:30 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
struct cmTarget::OutputInfo
|
|
|
|
{
|
|
|
|
std::string OutDir;
|
|
|
|
std::string ImpDir;
|
2012-09-25 05:30:42 +04:00
|
|
|
std::string PdbDir;
|
2009-07-08 16:31:30 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
struct cmTarget::ImportInfo
|
|
|
|
{
|
|
|
|
bool NoSOName;
|
|
|
|
std::string Location;
|
|
|
|
std::string SOName;
|
|
|
|
std::string ImportLibrary;
|
|
|
|
cmTarget::LinkInterface LinkInterface;
|
|
|
|
};
|
|
|
|
|
2013-01-04 16:31:01 +04:00
|
|
|
struct TargetConfigPair : public std::pair<cmTarget*, std::string> {
|
|
|
|
TargetConfigPair(cmTarget* tgt, const std::string &config)
|
|
|
|
: std::pair<cmTarget*, std::string>(tgt, config) {}
|
|
|
|
};
|
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
class cmTargetInternals
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmTargetInternals()
|
|
|
|
{
|
|
|
|
this->SourceFileFlagsConstructed = false;
|
|
|
|
}
|
2009-10-06 00:14:17 +04:00
|
|
|
cmTargetInternals(cmTargetInternals const& r)
|
|
|
|
{
|
2009-10-06 17:59:05 +04:00
|
|
|
this->SourceFileFlagsConstructed = false;
|
2009-10-06 00:14:17 +04:00
|
|
|
// Only some of these entries are part of the object state.
|
|
|
|
// Others not copied here are result caches.
|
|
|
|
this->SourceEntries = r.SourceEntries;
|
|
|
|
}
|
2008-02-19 00:38:34 +03:00
|
|
|
typedef cmTarget::SourceFileFlags SourceFileFlags;
|
|
|
|
std::map<cmSourceFile const*, SourceFileFlags> SourceFlagsMap;
|
|
|
|
bool SourceFileFlagsConstructed;
|
2008-03-13 20:48:57 +03:00
|
|
|
|
|
|
|
// The backtrace when the target was created.
|
|
|
|
cmListFileBacktrace Backtrace;
|
2009-07-07 17:45:29 +04:00
|
|
|
|
|
|
|
// Cache link interface computation from each configuration.
|
|
|
|
struct OptionalLinkInterface: public cmTarget::LinkInterface
|
|
|
|
{
|
|
|
|
OptionalLinkInterface(): Exists(false) {}
|
|
|
|
bool Exists;
|
|
|
|
};
|
2013-01-04 16:31:01 +04:00
|
|
|
typedef std::map<TargetConfigPair, OptionalLinkInterface>
|
|
|
|
LinkInterfaceMapType;
|
2009-07-07 17:45:29 +04:00
|
|
|
LinkInterfaceMapType LinkInterfaceMap;
|
2009-07-08 16:31:30 +04:00
|
|
|
|
|
|
|
typedef std::map<cmStdString, cmTarget::OutputInfo> OutputInfoMapType;
|
|
|
|
OutputInfoMapType OutputInfoMap;
|
|
|
|
|
2013-01-04 16:31:01 +04:00
|
|
|
typedef std::map<TargetConfigPair, cmTarget::ImportInfo>
|
|
|
|
ImportInfoMapType;
|
2009-07-08 16:31:30 +04:00
|
|
|
ImportInfoMapType ImportInfoMap;
|
2009-07-08 20:04:48 +04:00
|
|
|
|
|
|
|
// Cache link implementation computation from each configuration.
|
2013-01-04 16:31:01 +04:00
|
|
|
typedef std::map<TargetConfigPair,
|
|
|
|
cmTarget::LinkImplementation> LinkImplMapType;
|
2009-07-08 20:04:48 +04:00
|
|
|
LinkImplMapType LinkImplMap;
|
2009-07-10 21:53:28 +04:00
|
|
|
|
2013-01-04 16:31:01 +04:00
|
|
|
typedef std::map<TargetConfigPair, cmTarget::LinkClosure>
|
|
|
|
LinkClosureMapType;
|
2009-07-10 21:53:28 +04:00
|
|
|
LinkClosureMapType LinkClosureMap;
|
2009-09-07 18:11:43 +04:00
|
|
|
|
|
|
|
struct SourceEntry { std::vector<cmSourceFile*> Depends; };
|
|
|
|
typedef std::map<cmSourceFile*, SourceEntry> SourceEntriesType;
|
|
|
|
SourceEntriesType SourceEntries;
|
2012-11-20 01:47:30 +04:00
|
|
|
|
|
|
|
struct IncludeDirectoriesEntry {
|
|
|
|
IncludeDirectoriesEntry(cmsys::auto_ptr<cmCompiledGeneratorExpression> cge)
|
|
|
|
: ge(cge)
|
|
|
|
{}
|
|
|
|
const cmsys::auto_ptr<cmCompiledGeneratorExpression> ge;
|
|
|
|
};
|
|
|
|
std::vector<IncludeDirectoriesEntry*> IncludeDirectoriesEntries;
|
2008-02-19 00:38:34 +03:00
|
|
|
};
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTarget::cmTarget()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile = 0;
|
2008-03-13 23:23:18 +03:00
|
|
|
this->PolicyStatusCMP0003 = cmPolicies::WARN;
|
2008-03-13 23:35:39 +03:00
|
|
|
this->PolicyStatusCMP0004 = cmPolicies::WARN;
|
2008-07-23 20:59:14 +04:00
|
|
|
this->PolicyStatusCMP0008 = cmPolicies::WARN;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->LinkLibrariesAnalyzed = false;
|
|
|
|
this->HaveInstallRule = false;
|
2007-03-19 17:00:36 +03:00
|
|
|
this->DLLPlatform = false;
|
2011-12-02 01:21:25 +04:00
|
|
|
this->IsApple = false;
|
2007-05-22 18:24:59 +04:00
|
|
|
this->IsImportedTarget = false;
|
2006-12-07 17:45:32 +03:00
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2006-12-07 17:45:32 +03:00
|
|
|
void cmTarget::DefineProperties(cmake *cm)
|
|
|
|
{
|
2011-08-17 00:05:33 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("AUTOMOC", cmProperty::TARGET,
|
|
|
|
"Should the target be processed with automoc (for Qt projects).",
|
|
|
|
"AUTOMOC is a boolean specifying whether CMake will handle "
|
|
|
|
"the Qt moc preprocessor automatically, i.e. without having to use "
|
|
|
|
"the QT4_WRAP_CPP() macro. Currently Qt4 is supported. "
|
|
|
|
"When this property is set to TRUE, CMake will scan the source files "
|
|
|
|
"at build time and invoke moc accordingly. "
|
|
|
|
"If an #include statement like #include \"moc_foo.cpp\" is found, "
|
|
|
|
"the Q_OBJECT class declaration is expected in the header, and moc is "
|
|
|
|
"run on the header file. "
|
|
|
|
"If an #include statement like #include \"foo.moc\" is found, "
|
|
|
|
"then a Q_OBJECT is expected in the current source file and moc "
|
|
|
|
"is run on the file itself. "
|
|
|
|
"Additionally, all header files are parsed for Q_OBJECT macros, "
|
|
|
|
"and if found, moc is also executed on those files. The resulting "
|
|
|
|
"moc files, which are not included as shown above in any of the source "
|
|
|
|
"files are included in a generated <targetname>_automoc.cpp file, "
|
|
|
|
"which is compiled as part of the target."
|
|
|
|
"This property is initialized by the value of the variable "
|
2011-11-01 22:54:04 +04:00
|
|
|
"CMAKE_AUTOMOC if it is set when a target is created.\n"
|
|
|
|
"Additional command line options for moc can be set via the "
|
2011-12-08 01:29:13 +04:00
|
|
|
"AUTOMOC_MOC_OPTIONS property.\n"
|
2011-12-14 01:11:47 +04:00
|
|
|
"By setting the CMAKE_AUTOMOC_RELAXED_MODE variable to TRUE the rules "
|
2011-12-06 23:42:20 +04:00
|
|
|
"for searching the files which will be processed by moc can be relaxed. "
|
|
|
|
"See the documentation for this variable for more details.");
|
2011-11-01 22:54:04 +04:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("AUTOMOC_MOC_OPTIONS", cmProperty::TARGET,
|
|
|
|
"Additional options for moc when using automoc (see the AUTOMOC property)",
|
|
|
|
"This property is only used if the AUTOMOC property is set to TRUE for "
|
|
|
|
"this target. In this case, it holds additional command line options "
|
|
|
|
"which will be used when moc is executed during the build, i.e. it is "
|
|
|
|
"equivalent to the optional OPTIONS argument of the qt4_wrap_cpp() "
|
|
|
|
"macro.\n"
|
|
|
|
"By default it is empty.");
|
2011-08-17 00:05:33 +04:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("BUILD_WITH_INSTALL_RPATH", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Should build tree targets have install tree rpaths.",
|
|
|
|
"BUILD_WITH_INSTALL_RPATH is a boolean specifying whether to link "
|
|
|
|
"the target in the build tree with the INSTALL_RPATH. This takes "
|
|
|
|
"precedence over SKIP_BUILD_RPATH and avoids the need for relinking "
|
2009-03-19 17:53:51 +03:00
|
|
|
"before installation. "
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_BUILD_WITH_INSTALL_RPATH if it is set when a target is created.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("COMPILE_FLAGS", cmProperty::TARGET,
|
2008-01-10 06:09:19 +03:00
|
|
|
"Additional flags to use when compiling this target's sources.",
|
2006-12-07 17:45:32 +03:00
|
|
|
"The COMPILE_FLAGS property sets additional compiler flags used "
|
2008-01-14 17:20:58 +03:00
|
|
|
"to build sources within the target. Use COMPILE_DEFINITIONS "
|
|
|
|
"to pass additional preprocessor definitions.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("COMPILE_DEFINITIONS", cmProperty::TARGET,
|
2008-01-16 05:02:00 +03:00
|
|
|
"Preprocessor definitions for compiling a target's sources.",
|
2009-06-24 17:36:29 +04:00
|
|
|
"The COMPILE_DEFINITIONS property may be set to a "
|
|
|
|
"semicolon-separated list of preprocessor "
|
2008-01-14 17:20:58 +03:00
|
|
|
"definitions using the syntax VAR or VAR=value. Function-style "
|
|
|
|
"definitions are not supported. CMake will automatically escape "
|
|
|
|
"the value correctly for the native build system (note that CMake "
|
|
|
|
"language syntax may require escapes to specify some values). "
|
|
|
|
"This property may be set on a per-configuration basis using the name "
|
2008-01-16 05:02:00 +03:00
|
|
|
"COMPILE_DEFINITIONS_<CONFIG> where <CONFIG> is an upper-case name "
|
|
|
|
"(ex. \"COMPILE_DEFINITIONS_DEBUG\").\n"
|
2008-01-14 17:20:58 +03:00
|
|
|
"CMake will automatically drop some definitions that "
|
|
|
|
"are not supported by the native build tool. "
|
2009-03-23 21:48:09 +03:00
|
|
|
"The VS6 IDE does not support definition values with spaces "
|
2008-01-14 17:20:58 +03:00
|
|
|
"(but NMake does).\n"
|
2012-09-29 20:31:47 +04:00
|
|
|
"Contents of COMPILE_DEFINITIONS may use \"generator expressions\" with "
|
|
|
|
"the syntax \"$<...>\". "
|
|
|
|
CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS
|
2011-01-17 15:55:48 +03:00
|
|
|
CM_DOCUMENT_COMPILE_DEFINITIONS_DISCLAIMER);
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2008-01-15 18:49:22 +03:00
|
|
|
cm->DefineProperty
|
2008-01-16 05:02:00 +03:00
|
|
|
("COMPILE_DEFINITIONS_<CONFIG>", cmProperty::TARGET,
|
2008-01-15 18:49:22 +03:00
|
|
|
"Per-configuration preprocessor definitions on a target.",
|
|
|
|
"This is the configuration-specific version of COMPILE_DEFINITIONS.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("DEFINE_SYMBOL", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Define a symbol when compiling this target's sources.",
|
|
|
|
"DEFINE_SYMBOL sets the name of the preprocessor symbol defined when "
|
|
|
|
"compiling sources in a shared library. "
|
|
|
|
"If not set here then it is set to target_EXPORTS by default "
|
|
|
|
"(with some substitutions if the target is not a valid C "
|
|
|
|
"identifier). This is useful for headers to know whether they are "
|
|
|
|
"being included from inside their library our outside to properly "
|
|
|
|
"setup dllexport/dllimport decorations. ");
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("DEBUG_POSTFIX", cmProperty::TARGET,
|
2008-12-15 21:30:09 +03:00
|
|
|
"See target property <CONFIG>_POSTFIX.",
|
|
|
|
"This property is a special case of the more-general <CONFIG>_POSTFIX "
|
|
|
|
"property for the DEBUG configuration.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("<CONFIG>_POSTFIX", cmProperty::TARGET,
|
|
|
|
"Postfix to append to the target file name for configuration <CONFIG>.",
|
|
|
|
"When building with configuration <CONFIG> the value of this property "
|
|
|
|
"is appended to the target file name built on disk. "
|
|
|
|
"For non-executable targets, this property is initialized by the value "
|
|
|
|
"of the variable CMAKE_<CONFIG>_POSTFIX if it is set when a target is "
|
|
|
|
"created. "
|
|
|
|
"This property is ignored on the Mac for Frameworks and App Bundles.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("EchoString", cmProperty::TARGET,
|
2007-05-22 18:24:59 +04:00
|
|
|
"A message to be displayed when the target is built.",
|
2007-08-09 16:49:49 +04:00
|
|
|
"A message to display on some generators (such as makefiles) when "
|
2006-12-07 17:45:32 +03:00
|
|
|
"the target is built.");
|
|
|
|
|
2010-10-07 06:43:04 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("BUNDLE", cmProperty::TARGET,
|
|
|
|
"This target is a CFBundle on the Mac.",
|
|
|
|
"If a module library target has this property set to true it will "
|
|
|
|
"be built as a CFBundle when built on the mac. It will have the "
|
|
|
|
"directory structure required for a CFBundle and will be suitable "
|
|
|
|
"to be used for creating Browser Plugins or other application "
|
|
|
|
"resources.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("BUNDLE_EXTENSION", cmProperty::TARGET,
|
|
|
|
"The file extension used to name a BUNDLE target on the Mac.",
|
|
|
|
"The default value is \"bundle\" - you can also use \"plugin\" or "
|
|
|
|
"whatever file extension is required by the host app for your "
|
|
|
|
"bundle.");
|
|
|
|
|
2012-10-12 17:26:40 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("EXCLUDE_FROM_DEFAULT_BUILD", cmProperty::TARGET,
|
|
|
|
"Exclude target from \"Build Solution\".",
|
|
|
|
"This property is only used by Visual Studio generators 7 and above. "
|
|
|
|
"When set to TRUE, the target will not be built when you press "
|
|
|
|
"\"Build Solution\".");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("EXCLUDE_FROM_DEFAULT_BUILD_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration version of target exclusion from \"Build Solution\". ",
|
|
|
|
"This is the configuration-specific version of "
|
|
|
|
"EXCLUDE_FROM_DEFAULT_BUILD. If the generic EXCLUDE_FROM_DEFAULT_BUILD "
|
|
|
|
"is also set on a target, EXCLUDE_FROM_DEFAULT_BUILD_<CONFIG> takes "
|
|
|
|
"precedence in configurations for which it has a value.");
|
|
|
|
|
2007-10-30 18:03:16 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("FRAMEWORK", cmProperty::TARGET,
|
|
|
|
"This target is a framework on the Mac.",
|
2008-01-28 21:05:58 +03:00
|
|
|
"If a shared library target has this property set to true it will "
|
2007-10-30 18:03:16 +03:00
|
|
|
"be built as a framework when built on the mac. It will have the "
|
|
|
|
"directory structure required for a framework and will be suitable "
|
|
|
|
"to be used with the -framework option");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("HAS_CXX", cmProperty::TARGET,
|
2010-04-21 00:14:52 +04:00
|
|
|
"Link the target using the C++ linker tool (obsolete).",
|
2009-07-10 21:53:48 +04:00
|
|
|
"This is equivalent to setting the LINKER_LANGUAGE property to CXX. "
|
|
|
|
"See that property's documentation for details.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2008-05-14 19:54:52 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("IMPLICIT_DEPENDS_INCLUDE_TRANSFORM", cmProperty::TARGET,
|
|
|
|
"Specify #include line transforms for dependencies in a target.",
|
|
|
|
"This property specifies rules to transform macro-like #include lines "
|
|
|
|
"during implicit dependency scanning of C and C++ source files. "
|
|
|
|
"The list of rules must be semicolon-separated with each entry of "
|
|
|
|
"the form \"A_MACRO(%)=value-with-%\" (the % must be literal). "
|
|
|
|
"During dependency scanning occurrences of A_MACRO(...) on #include "
|
|
|
|
"lines will be replaced by the value given with the macro argument "
|
|
|
|
"substituted for '%'. For example, the entry\n"
|
|
|
|
" MYDIR(%)=<mydir/%>\n"
|
|
|
|
"will convert lines of the form\n"
|
|
|
|
" #include MYDIR(myheader.h)\n"
|
|
|
|
"to\n"
|
|
|
|
" #include <mydir/myheader.h>\n"
|
|
|
|
"allowing the dependency to be followed.\n"
|
|
|
|
"This property applies to sources in the target on which it is set.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("IMPORT_PREFIX", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"What comes before the import library name.",
|
|
|
|
"Similar to the target property PREFIX, but used for import libraries "
|
|
|
|
"(typically corresponding to a DLL) instead of regular libraries. "
|
|
|
|
"A target property that can be set to override the prefix "
|
|
|
|
"(such as \"lib\") on an import library name.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("IMPORT_SUFFIX", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"What comes after the import library name.",
|
|
|
|
"Similar to the target property SUFFIX, but used for import libraries "
|
|
|
|
"(typically corresponding to a DLL) instead of regular libraries. "
|
|
|
|
"A target property that can be set to override the suffix "
|
|
|
|
"(such as \".lib\") on an import library name.");
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED", cmProperty::TARGET,
|
|
|
|
"Read-only indication of whether a target is IMPORTED.",
|
|
|
|
"The boolean value of this property is true for targets created with "
|
|
|
|
"the IMPORTED option to add_executable or add_library. "
|
|
|
|
"It is false for targets built within the project.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_CONFIGURATIONS", cmProperty::TARGET,
|
|
|
|
"Configurations provided for an IMPORTED target.",
|
2012-01-26 01:17:43 +04:00
|
|
|
"Set this to the list of configuration names available for an "
|
|
|
|
"IMPORTED target. "
|
2008-01-28 16:38:36 +03:00
|
|
|
"The names correspond to configurations defined in the project from "
|
|
|
|
"which the target is imported. "
|
|
|
|
"If the importing project uses a different set of configurations "
|
|
|
|
"the names may be mapped using the MAP_IMPORTED_CONFIG_<CONFIG> "
|
|
|
|
"property. "
|
|
|
|
"Ignored for non-imported targets.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_IMPLIB", cmProperty::TARGET,
|
|
|
|
"Full path to the import library for an IMPORTED target.",
|
2012-01-26 01:17:43 +04:00
|
|
|
"Set this to the location of the \".lib\" part of a windows DLL. "
|
2008-01-28 16:38:36 +03:00
|
|
|
"Ignored for non-imported targets.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_IMPLIB_<CONFIG>", cmProperty::TARGET,
|
2012-01-26 01:17:43 +04:00
|
|
|
"<CONFIG>-specific version of IMPORTED_IMPLIB property.",
|
2008-01-28 16:38:36 +03:00
|
|
|
"Configuration names correspond to those provided by the project "
|
|
|
|
"from which the target is imported.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
2008-01-31 23:45:31 +03:00
|
|
|
("IMPORTED_LINK_DEPENDENT_LIBRARIES", cmProperty::TARGET,
|
|
|
|
"Dependent shared libraries of an imported shared library.",
|
|
|
|
"Shared libraries may be linked to other shared libraries as part "
|
|
|
|
"of their implementation. On some platforms the linker searches "
|
|
|
|
"for the dependent libraries of shared libraries they are including "
|
2012-01-26 01:17:43 +04:00
|
|
|
"in the link. "
|
|
|
|
"Set this property to the list of dependent shared libraries of an "
|
|
|
|
"imported library. "
|
|
|
|
"The list "
|
2008-01-31 23:45:31 +03:00
|
|
|
"should be disjoint from the list of interface libraries in the "
|
|
|
|
"IMPORTED_LINK_INTERFACE_LIBRARIES property. On platforms requiring "
|
|
|
|
"dependent shared libraries to be found at link time CMake uses this "
|
2008-02-01 16:56:00 +03:00
|
|
|
"list to add appropriate files or paths to the link command line. "
|
|
|
|
"Ignored for non-imported targets.");
|
2008-01-31 23:45:31 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_LINK_DEPENDENT_LIBRARIES_<CONFIG>", cmProperty::TARGET,
|
2012-01-26 01:17:43 +04:00
|
|
|
"<CONFIG>-specific version of IMPORTED_LINK_DEPENDENT_LIBRARIES.",
|
2008-01-31 23:45:31 +03:00
|
|
|
"Configuration names correspond to those provided by the project "
|
2008-08-19 18:29:35 +04:00
|
|
|
"from which the target is imported. "
|
|
|
|
"If set, this property completely overrides the generic property "
|
|
|
|
"for the named configuration.");
|
2008-01-31 23:45:31 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_LINK_INTERFACE_LIBRARIES", cmProperty::TARGET,
|
|
|
|
"Transitive link interface of an IMPORTED target.",
|
2012-01-26 01:17:43 +04:00
|
|
|
"Set this to the list of libraries whose interface is included when "
|
|
|
|
"an IMPORTED library target is linked to another target. "
|
2008-01-31 23:45:31 +03:00
|
|
|
"The libraries will be included on the link line for the target. "
|
2008-08-19 18:29:35 +04:00
|
|
|
"Unlike the LINK_INTERFACE_LIBRARIES property, this property applies "
|
|
|
|
"to all imported target types, including STATIC libraries. "
|
|
|
|
"This property is ignored for non-imported targets.");
|
2008-01-28 16:38:36 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
2008-01-31 23:45:31 +03:00
|
|
|
("IMPORTED_LINK_INTERFACE_LIBRARIES_<CONFIG>", cmProperty::TARGET,
|
2012-01-26 01:17:43 +04:00
|
|
|
"<CONFIG>-specific version of IMPORTED_LINK_INTERFACE_LIBRARIES.",
|
2008-01-28 16:38:36 +03:00
|
|
|
"Configuration names correspond to those provided by the project "
|
2008-08-19 18:29:35 +04:00
|
|
|
"from which the target is imported. "
|
|
|
|
"If set, this property completely overrides the generic property "
|
|
|
|
"for the named configuration.");
|
2008-01-28 16:38:36 +03:00
|
|
|
|
2009-07-11 18:12:05 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_LINK_INTERFACE_LANGUAGES", cmProperty::TARGET,
|
|
|
|
"Languages compiled into an IMPORTED static library.",
|
2012-01-26 01:17:43 +04:00
|
|
|
"Set this to the list of languages of source files compiled to "
|
|
|
|
"produce a STATIC IMPORTED library (such as \"C\" or \"CXX\"). "
|
2009-07-11 18:12:05 +04:00
|
|
|
"CMake accounts for these languages when computing how to link a "
|
|
|
|
"target to the imported library. "
|
|
|
|
"For example, when a C executable links to an imported C++ static "
|
|
|
|
"library CMake chooses the C++ linker to satisfy language runtime "
|
|
|
|
"dependencies of the static library. "
|
|
|
|
"\n"
|
|
|
|
"This property is ignored for targets that are not STATIC libraries. "
|
|
|
|
"This property is ignored for non-imported targets.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_LINK_INTERFACE_LANGUAGES_<CONFIG>", cmProperty::TARGET,
|
2012-01-26 01:17:43 +04:00
|
|
|
"<CONFIG>-specific version of IMPORTED_LINK_INTERFACE_LANGUAGES.",
|
2009-07-11 18:12:05 +04:00
|
|
|
"Configuration names correspond to those provided by the project "
|
|
|
|
"from which the target is imported. "
|
|
|
|
"If set, this property completely overrides the generic property "
|
|
|
|
"for the named configuration.");
|
|
|
|
|
2009-09-01 18:37:37 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_LINK_INTERFACE_MULTIPLICITY", cmProperty::TARGET,
|
|
|
|
"Repetition count for cycles of IMPORTED static libraries.",
|
|
|
|
"This is LINK_INTERFACE_MULTIPLICITY for IMPORTED targets.");
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_LINK_INTERFACE_MULTIPLICITY_<CONFIG>", cmProperty::TARGET,
|
2012-01-26 01:17:43 +04:00
|
|
|
"<CONFIG>-specific version of IMPORTED_LINK_INTERFACE_MULTIPLICITY.",
|
2009-09-01 18:37:37 +04:00
|
|
|
"If set, this property completely overrides the generic property "
|
|
|
|
"for the named configuration.");
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_LOCATION", cmProperty::TARGET,
|
|
|
|
"Full path to the main file on disk for an IMPORTED target.",
|
2012-01-26 01:17:43 +04:00
|
|
|
"Set this to the location of an IMPORTED target file on disk. "
|
2008-01-28 16:38:36 +03:00
|
|
|
"For executables this is the location of the executable file. "
|
2008-01-28 22:46:16 +03:00
|
|
|
"For bundles on OS X this is the location of the executable file "
|
|
|
|
"inside Contents/MacOS under the application bundle folder. "
|
2008-01-28 16:38:36 +03:00
|
|
|
"For static libraries and modules this is the location of the "
|
|
|
|
"library or module. "
|
|
|
|
"For shared libraries on non-DLL platforms this is the location of "
|
|
|
|
"the shared library. "
|
2008-01-28 21:05:58 +03:00
|
|
|
"For frameworks on OS X this is the location of the library file "
|
|
|
|
"symlink just inside the framework folder. "
|
2008-01-28 16:38:36 +03:00
|
|
|
"For DLLs this is the location of the \".dll\" part of the library. "
|
2008-08-18 19:39:22 +04:00
|
|
|
"For UNKNOWN libraries this is the location of the file to be linked. "
|
2012-01-26 01:17:43 +04:00
|
|
|
"Ignored for non-imported targets."
|
|
|
|
"\n"
|
|
|
|
"Projects may skip IMPORTED_LOCATION if the configuration-specific "
|
|
|
|
"property IMPORTED_LOCATION_<CONFIG> is set. "
|
|
|
|
"To get the location of an imported target read one of the "
|
|
|
|
"LOCATION or LOCATION_<CONFIG> properties.");
|
2008-01-28 16:38:36 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_LOCATION_<CONFIG>", cmProperty::TARGET,
|
2012-01-26 01:17:43 +04:00
|
|
|
"<CONFIG>-specific version of IMPORTED_LOCATION property.",
|
2008-01-28 16:38:36 +03:00
|
|
|
"Configuration names correspond to those provided by the project "
|
|
|
|
"from which the target is imported.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_SONAME", cmProperty::TARGET,
|
|
|
|
"The \"soname\" of an IMPORTED target of shared library type.",
|
2012-01-26 01:17:43 +04:00
|
|
|
"Set this to the \"soname\" embedded in an imported shared library. "
|
2008-01-28 16:38:36 +03:00
|
|
|
"This is meaningful only on platforms supporting the feature. "
|
|
|
|
"Ignored for non-imported targets.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_SONAME_<CONFIG>", cmProperty::TARGET,
|
2012-01-26 01:17:43 +04:00
|
|
|
"<CONFIG>-specific version of IMPORTED_SONAME property.",
|
2008-01-28 16:38:36 +03:00
|
|
|
"Configuration names correspond to those provided by the project "
|
|
|
|
"from which the target is imported.");
|
|
|
|
|
2010-09-17 21:28:29 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_NO_SONAME", cmProperty::TARGET,
|
|
|
|
"Specifies that an IMPORTED shared library target has no \"soname\". ",
|
|
|
|
"Set this property to true for an imported shared library file that "
|
|
|
|
"has no \"soname\" field. "
|
|
|
|
"CMake may adjust generated link commands for some platforms to prevent "
|
|
|
|
"the linker from using the path to the library in place of its missing "
|
|
|
|
"soname. "
|
|
|
|
"Ignored for non-imported targets.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("IMPORTED_NO_SONAME_<CONFIG>", cmProperty::TARGET,
|
2012-01-26 01:17:43 +04:00
|
|
|
"<CONFIG>-specific version of IMPORTED_NO_SONAME property.",
|
2008-01-28 16:38:36 +03:00
|
|
|
"Configuration names correspond to those provided by the project "
|
|
|
|
"from which the target is imported.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("EXCLUDE_FROM_ALL", cmProperty::TARGET,
|
2007-02-23 17:46:27 +03:00
|
|
|
"Exclude the target from the all target.",
|
|
|
|
"A property on a target that indicates if the target is excluded "
|
|
|
|
"from the default build target. If it is not, then with a Makefile "
|
2007-08-03 23:44:25 +04:00
|
|
|
"for example typing make will cause this target to be built. "
|
2007-08-04 00:31:08 +04:00
|
|
|
"The same concept applies to the default build of other generators. "
|
|
|
|
"Installing a target with EXCLUDE_FROM_ALL set to true has "
|
|
|
|
"undefined behavior.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2012-12-06 15:14:03 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_LIBRARIES", cmProperty::TARGET,
|
|
|
|
"List of direct link dependencies.",
|
|
|
|
"This property specifies the list of libraries or targets which will be "
|
|
|
|
"used for linking. "
|
|
|
|
"In addition to accepting values from the target_link_libraries "
|
|
|
|
"command, values may be set directly on any target using the "
|
|
|
|
"set_property command. "
|
|
|
|
"\n"
|
|
|
|
"The target property values are used by the generators to set "
|
|
|
|
"the link libraries for the compiler. "
|
|
|
|
"See also the target_link_libraries command.\n"
|
|
|
|
"Contents of LINK_LIBRARIES may use \"generator expressions\" with "
|
|
|
|
"the syntax \"$<...>\". "
|
|
|
|
CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS);
|
|
|
|
|
2012-02-22 23:30:00 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("INCLUDE_DIRECTORIES", cmProperty::TARGET,
|
|
|
|
"List of preprocessor include file search directories.",
|
|
|
|
"This property specifies the list of directories given "
|
|
|
|
"so far to the include_directories command. "
|
|
|
|
"This property exists on directories and targets. "
|
|
|
|
"In addition to accepting values from the include_directories "
|
|
|
|
"command, values may be set directly on any directory or any "
|
|
|
|
"target using the set_property command. "
|
|
|
|
"A target gets its initial value for this property from the value "
|
|
|
|
"of the directory property. "
|
|
|
|
"A directory gets its initial value from its parent directory if "
|
|
|
|
"it has one. "
|
|
|
|
"Both directory and target property values are adjusted by calls "
|
|
|
|
"to the include_directories command."
|
|
|
|
"\n"
|
|
|
|
"The target property values are used by the generators to set "
|
2012-09-29 20:31:47 +04:00
|
|
|
"the include paths for the compiler. "
|
|
|
|
"See also the include_directories command.\n"
|
|
|
|
"Contents of INCLUDE_DIRECTORIES may use \"generator expressions\" with "
|
|
|
|
"the syntax \"$<...>\". "
|
|
|
|
CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS);
|
2012-02-22 23:30:00 +04:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("INSTALL_NAME_DIR", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Mac OSX directory name for installed targets.",
|
|
|
|
"INSTALL_NAME_DIR is a string specifying the "
|
|
|
|
"directory portion of the \"install_name\" field of shared libraries "
|
|
|
|
"on Mac OSX to use in the installed targets. ");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("INSTALL_RPATH", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"The rpath to use for installed targets.",
|
|
|
|
"A semicolon-separated list specifying the rpath "
|
2009-03-19 17:53:51 +03:00
|
|
|
"to use in installed targets (for platforms that support it). "
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_INSTALL_RPATH if it is set when a target is created.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("INSTALL_RPATH_USE_LINK_PATH", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Add paths to linker search and installed rpath.",
|
|
|
|
"INSTALL_RPATH_USE_LINK_PATH is a boolean that if set to true will "
|
|
|
|
"append directories in the linker search path and outside the "
|
2009-03-19 17:53:51 +03:00
|
|
|
"project to the INSTALL_RPATH. "
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_INSTALL_RPATH_USE_LINK_PATH if it is set when a target is "
|
|
|
|
"created.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2009-10-02 21:52:13 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("INTERPROCEDURAL_OPTIMIZATION", cmProperty::TARGET,
|
|
|
|
"Enable interprocedural optimization for a target.",
|
|
|
|
"If set to true, enables interprocedural optimizations "
|
|
|
|
"if they are known to be supported by the compiler.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("INTERPROCEDURAL_OPTIMIZATION_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration interprocedural optimization for a target.",
|
|
|
|
"This is a per-configuration version of INTERPROCEDURAL_OPTIMIZATION. "
|
|
|
|
"If set, this property overrides the generic property "
|
|
|
|
"for the named configuration.");
|
|
|
|
|
2009-02-10 16:50:21 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("LABELS", cmProperty::TARGET,
|
|
|
|
"Specify a list of text labels associated with a target.",
|
|
|
|
"Target label semantics are currently unspecified.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("LINK_FLAGS", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Additional flags to use when linking this target.",
|
|
|
|
"The LINK_FLAGS property can be used to add extra flags to the "
|
|
|
|
"link step of a target. LINK_FLAGS_<CONFIG> will add to the "
|
|
|
|
"configuration <CONFIG>, "
|
|
|
|
"for example, DEBUG, RELEASE, MINSIZEREL, RELWITHDEBINFO. ");
|
|
|
|
|
2008-01-21 21:59:10 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_FLAGS_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration linker flags for a target.",
|
|
|
|
"This is the configuration-specific version of LINK_FLAGS.");
|
|
|
|
|
2011-03-04 01:08:31 +03:00
|
|
|
#define CM_LINK_SEARCH_SUMMARY \
|
|
|
|
"Some linkers support switches such as -Bstatic and -Bdynamic " \
|
|
|
|
"to determine whether to use static or shared libraries for -lXXX " \
|
|
|
|
"options. CMake uses these options to set the link type for " \
|
|
|
|
"libraries whose full paths are not known or (in some cases) are in " \
|
|
|
|
"implicit link directories for the platform. "
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_SEARCH_START_STATIC", cmProperty::TARGET,
|
|
|
|
"Assume the linker looks for static libraries by default.",
|
|
|
|
CM_LINK_SEARCH_SUMMARY
|
|
|
|
"By default the linker search type is assumed to be -Bdynamic at "
|
|
|
|
"the beginning of the library list. This property switches the "
|
|
|
|
"assumption to -Bstatic. It is intended for use when linking an "
|
|
|
|
"executable statically (e.g. with the GNU -static option). "
|
|
|
|
"See also LINK_SEARCH_END_STATIC.");
|
|
|
|
|
2008-01-31 16:05:34 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_SEARCH_END_STATIC", cmProperty::TARGET,
|
|
|
|
"End a link line such that static system libraries are used.",
|
2011-03-04 01:08:31 +03:00
|
|
|
CM_LINK_SEARCH_SUMMARY
|
|
|
|
"By default CMake adds an option at the end of the library list (if "
|
|
|
|
"necessary) to set the linker search type back to its starting type. "
|
|
|
|
"This property switches the final linker search type to -Bstatic "
|
|
|
|
"regardless of how it started. "
|
|
|
|
"See also LINK_SEARCH_START_STATIC.");
|
2008-01-31 16:05:34 +03:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("LINKER_LANGUAGE", cmProperty::TARGET,
|
2009-07-30 18:59:37 +04:00
|
|
|
"Specifies language whose compiler will invoke the linker.",
|
2009-07-10 21:53:48 +04:00
|
|
|
"For executables, shared libraries, and modules, this sets the "
|
2009-07-30 18:59:37 +04:00
|
|
|
"language whose compiler is used to link the target "
|
2009-07-10 21:53:48 +04:00
|
|
|
"(such as \"C\" or \"CXX\"). "
|
2009-07-30 18:59:37 +04:00
|
|
|
"A typical value for an executable is the language of the source "
|
|
|
|
"file providing the program entry point (main). "
|
|
|
|
"If not set, the language with the highest linker preference "
|
|
|
|
"value is the default. "
|
|
|
|
"See documentation of CMAKE_<LANG>_LINKER_PREFERENCE variables.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("LOCATION", cmProperty::TARGET,
|
2009-01-05 17:53:14 +03:00
|
|
|
"Read-only location of a target on disk.",
|
|
|
|
"For an imported target, this read-only property returns the value of "
|
|
|
|
"the LOCATION_<CONFIG> property for an unspecified configuration "
|
|
|
|
"<CONFIG> provided by the target.\n"
|
|
|
|
"For a non-imported target, this property is provided for compatibility "
|
|
|
|
"with CMake 2.4 and below. "
|
2008-01-28 16:38:36 +03:00
|
|
|
"It was meant to get the location of an executable target's output file "
|
|
|
|
"for use in add_custom_command. "
|
2009-01-05 17:53:14 +03:00
|
|
|
"The path may contain a build-system-specific portion that "
|
|
|
|
"is replaced at build time with the configuration getting built "
|
|
|
|
"(such as \"$(ConfigurationName)\" in VS). "
|
2008-01-28 16:38:36 +03:00
|
|
|
"In CMake 2.6 and above add_custom_command automatically recognizes a "
|
|
|
|
"target name in its COMMAND and DEPENDS options and computes the "
|
2009-01-05 17:53:14 +03:00
|
|
|
"target location. "
|
2011-01-10 18:46:15 +03:00
|
|
|
"In CMake 2.8.4 and above add_custom_command recognizes generator "
|
|
|
|
"expressions to refer to target locations anywhere in the command. "
|
|
|
|
"Therefore this property is not needed for creating custom commands."
|
2011-12-02 00:41:01 +04:00
|
|
|
CM_LOCATION_UNDEFINED_BEHAVIOR("reading this property"));
|
2008-01-28 16:38:36 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("LOCATION_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Read-only property providing a target location on disk.",
|
|
|
|
"A read-only property that indicates where a target's main file is "
|
|
|
|
"located on disk for the configuration <CONFIG>. "
|
2009-01-05 17:53:14 +03:00
|
|
|
"The property is defined only for library and executable targets. "
|
|
|
|
"An imported target may provide a set of configurations different "
|
|
|
|
"from that of the importing project. "
|
|
|
|
"By default CMake looks for an exact-match but otherwise uses an "
|
|
|
|
"arbitrary available configuration. "
|
|
|
|
"Use the MAP_IMPORTED_CONFIG_<CONFIG> property to map imported "
|
2011-01-10 20:07:32 +03:00
|
|
|
"configurations explicitly."
|
2011-12-02 00:41:01 +04:00
|
|
|
CM_LOCATION_UNDEFINED_BEHAVIOR("reading this property"));
|
2008-01-28 16:38:36 +03:00
|
|
|
|
2010-11-05 16:05:08 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_DEPENDS", cmProperty::TARGET,
|
|
|
|
"Additional files on which a target binary depends for linking.",
|
|
|
|
"Specifies a semicolon-separated list of full-paths to files on which "
|
|
|
|
"the link rule for this target depends. "
|
|
|
|
"The target binary will be linked if any of the named files is newer "
|
|
|
|
"than it."
|
|
|
|
"\n"
|
|
|
|
"This property is ignored by non-Makefile generators. "
|
|
|
|
"It is intended to specify dependencies on \"linker scripts\" for "
|
|
|
|
"custom Makefile link rules.");
|
|
|
|
|
2012-10-26 16:25:36 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_DEPENDS_NO_SHARED", cmProperty::TARGET,
|
|
|
|
"Do not depend on linked shared library files.",
|
|
|
|
"Set this property to true to tell CMake generators not to add "
|
|
|
|
"file-level dependencies on the shared library files linked by "
|
|
|
|
"this target. "
|
|
|
|
"Modification to the shared libraries will not be sufficient to "
|
|
|
|
"re-link this target. "
|
|
|
|
"Logical target-level dependencies will not be affected so the "
|
|
|
|
"linked shared libraries will still be brought up to date before "
|
|
|
|
"this target is built."
|
|
|
|
"\n"
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_LINK_DEPENDS_NO_SHARED if it is set when a target is "
|
|
|
|
"created.");
|
|
|
|
|
2008-01-31 01:25:52 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_INTERFACE_LIBRARIES", cmProperty::TARGET,
|
|
|
|
"List public interface libraries for a shared library or executable.",
|
|
|
|
"By default linking to a shared library target transitively "
|
|
|
|
"links to targets with which the library itself was linked. "
|
|
|
|
"For an executable with exports (see the ENABLE_EXPORTS property) "
|
|
|
|
"no default transitive link dependencies are used. "
|
|
|
|
"This property replaces the default transitive link dependencies with "
|
2011-06-20 02:05:14 +04:00
|
|
|
"an explicit list. "
|
2008-01-31 01:25:52 +03:00
|
|
|
"When the target is linked into another target the libraries "
|
|
|
|
"listed (and recursively their link interface libraries) will be "
|
|
|
|
"provided to the other target also. "
|
|
|
|
"If the list is empty then no transitive link dependencies will be "
|
|
|
|
"incorporated when this target is linked into another target even if "
|
2008-08-19 18:29:35 +04:00
|
|
|
"the default set is non-empty. "
|
2011-10-01 14:23:56 +04:00
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_LINK_INTERFACE_LIBRARIES if it is set when a target is "
|
|
|
|
"created. "
|
2008-08-19 18:29:35 +04:00
|
|
|
"This property is ignored for STATIC libraries.");
|
2008-01-31 01:25:52 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_INTERFACE_LIBRARIES_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration list of public interface libraries for a target.",
|
|
|
|
"This is the configuration-specific version of "
|
2008-08-19 18:29:35 +04:00
|
|
|
"LINK_INTERFACE_LIBRARIES. "
|
|
|
|
"If set, this property completely overrides the generic property "
|
|
|
|
"for the named configuration.");
|
2008-01-31 01:25:52 +03:00
|
|
|
|
2012-09-23 15:45:17 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("INTERFACE_INCLUDE_DIRECTORIES", cmProperty::TARGET,
|
|
|
|
"List of public include directories for a library.",
|
|
|
|
"Targets may populate this property to publish the include directories "
|
|
|
|
"required to compile against the headers for the target. Consuming "
|
|
|
|
"targets can add entries to their own INCLUDE_DIRECTORIES property such "
|
|
|
|
"as $<TARGET_PROPERTY:foo,INTERFACE_INCLUDE_DIRECTORIES> to use the "
|
|
|
|
"include directories specified in the interface of 'foo'."
|
|
|
|
"\n"
|
|
|
|
CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS);
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("INTERFACE_COMPILE_DEFINITIONS", cmProperty::TARGET,
|
|
|
|
"List of public compile definitions for a library.",
|
|
|
|
"Targets may populate this property to publish the compile definitions "
|
|
|
|
"required to compile against the headers for the target. Consuming "
|
|
|
|
"targets can add entries to their own COMPILE_DEFINITIONS property such "
|
|
|
|
"as $<TARGET_PROPERTY:foo,INTERFACE_COMPILE_DEFINITIONS> to use the "
|
|
|
|
"compile definitions specified in the interface of 'foo'."
|
|
|
|
"\n"
|
|
|
|
CM_DOCUMENT_COMMAND_GENERATOR_EXPRESSIONS);
|
|
|
|
|
2009-09-01 18:37:37 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_INTERFACE_MULTIPLICITY", cmProperty::TARGET,
|
|
|
|
"Repetition count for STATIC libraries with cyclic dependencies.",
|
|
|
|
"When linking to a STATIC library target with cyclic dependencies the "
|
|
|
|
"linker may need to scan more than once through the archives in the "
|
|
|
|
"strongly connected component of the dependency graph. "
|
|
|
|
"CMake by default constructs the link line so that the linker will "
|
|
|
|
"scan through the component at least twice. "
|
|
|
|
"This property specifies the minimum number of scans if it is larger "
|
|
|
|
"than the default. "
|
|
|
|
"CMake uses the largest value specified by any target in a component.");
|
|
|
|
cm->DefineProperty
|
|
|
|
("LINK_INTERFACE_MULTIPLICITY_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration repetition count for cycles of STATIC libraries.",
|
|
|
|
"This is the configuration-specific version of "
|
|
|
|
"LINK_INTERFACE_MULTIPLICITY. "
|
|
|
|
"If set, this property completely overrides the generic property "
|
|
|
|
"for the named configuration.");
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("MAP_IMPORTED_CONFIG_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Map from project configuration to IMPORTED target's configuration.",
|
2012-01-26 01:17:43 +04:00
|
|
|
"Set this to the list of configurations of an imported target that "
|
|
|
|
"may be used for the current project's <CONFIG> configuration. "
|
2008-01-28 16:38:36 +03:00
|
|
|
"Targets imported from another project may not provide the same set "
|
|
|
|
"of configuration names available in the current project. "
|
|
|
|
"Setting this property tells CMake what imported configurations are "
|
|
|
|
"suitable for use when building the <CONFIG> configuration. "
|
|
|
|
"The first configuration in the list found to be provided by the "
|
2012-05-17 14:47:29 +04:00
|
|
|
"imported target is selected. If this property is set and no matching "
|
|
|
|
"configurations are available, then the imported target is considered "
|
|
|
|
"to be not found. This property is ignored for non-imported targets.",
|
2008-01-28 16:38:36 +03:00
|
|
|
false /* TODO: make this chained */ );
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2009-10-21 21:00:49 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("OSX_ARCHITECTURES", cmProperty::TARGET,
|
|
|
|
"Target specific architectures for OS X.",
|
|
|
|
"The OSX_ARCHITECTURES property sets the target binary architecture "
|
|
|
|
"for targets on OS X. "
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_OSX_ARCHITECTURES if it is set when a target is created. "
|
|
|
|
"Use OSX_ARCHITECTURES_<CONFIG> to set the binary architectures on a "
|
|
|
|
"per-configuration basis. "
|
|
|
|
"<CONFIG> is an upper-case name (ex: \"OSX_ARCHITECTURES_DEBUG\").");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("OSX_ARCHITECTURES_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration OS X binary architectures for a target.",
|
|
|
|
"This property is the configuration-specific version of "
|
|
|
|
"OSX_ARCHITECTURES.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("OUTPUT_NAME", cmProperty::TARGET,
|
2009-05-01 17:45:43 +04:00
|
|
|
"Output name for target files.",
|
|
|
|
"This sets the base name for output files created for an executable or "
|
|
|
|
"library target. "
|
|
|
|
"If not set, the logical target name is used by default.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("OUTPUT_NAME_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration target file base name.",
|
|
|
|
"This is the configuration-specific version of OUTPUT_NAME.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("<CONFIG>_OUTPUT_NAME", cmProperty::TARGET,
|
|
|
|
"Old per-configuration target file base name.",
|
|
|
|
"This is a configuration-specific version of OUTPUT_NAME. "
|
|
|
|
"Use OUTPUT_NAME_<CONFIG> instead.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2012-09-25 05:30:42 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("PDB_NAME", cmProperty::TARGET,
|
|
|
|
"Output name for MS debug symbols .pdb file.",
|
|
|
|
"Set the base name for debug symbols file created for an "
|
|
|
|
"executable or library target. "
|
2012-09-25 22:36:03 +04:00
|
|
|
"If not set, the logical target name is used by default. "
|
|
|
|
"\n"
|
|
|
|
"This property is not implemented by the Visual Studio 6 generator.");
|
2012-09-25 05:30:42 +04:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("PDB_NAME_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration name for MS debug symbols .pdb file. ",
|
2012-09-25 22:36:03 +04:00
|
|
|
"This is the configuration-specific version of PDB_NAME. "
|
|
|
|
"\n"
|
|
|
|
"This property is not implemented by the Visual Studio 6 generator.");
|
2012-09-25 05:30:42 +04:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("PRE_INSTALL_SCRIPT", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Deprecated install support.",
|
|
|
|
"The PRE_INSTALL_SCRIPT and POST_INSTALL_SCRIPT properties are the "
|
|
|
|
"old way to specify CMake scripts to run before and after "
|
|
|
|
"installing a target. They are used only when the old "
|
|
|
|
"INSTALL_TARGETS command is used to install the target. Use the "
|
|
|
|
"INSTALL command instead.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("PREFIX", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"What comes before the library name.",
|
|
|
|
"A target property that can be set to override the prefix "
|
|
|
|
"(such as \"lib\") on a library name.");
|
|
|
|
|
2012-05-30 22:13:09 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("POSITION_INDEPENDENT_CODE", cmProperty::TARGET,
|
|
|
|
"Whether to create a position-independent target",
|
|
|
|
"The POSITION_INDEPENDENT_CODE property determines whether position "
|
|
|
|
"independent executables or shared libraries will be created. "
|
|
|
|
"This property is true by default for SHARED and MODULE library "
|
2012-08-13 10:58:41 +04:00
|
|
|
"targets and false otherwise. "
|
|
|
|
"This property is initialized by the value of the variable "
|
2012-08-31 15:32:01 +04:00
|
|
|
"CMAKE_POSITION_INDEPENDENT_CODE if it is set when a target is "
|
2012-08-13 10:58:41 +04:00
|
|
|
"created.");
|
2012-05-30 22:13:09 +04:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("POST_INSTALL_SCRIPT", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Deprecated install support.",
|
|
|
|
"The PRE_INSTALL_SCRIPT and POST_INSTALL_SCRIPT properties are the "
|
|
|
|
"old way to specify CMake scripts to run before and after "
|
|
|
|
"installing a target. They are used only when the old "
|
|
|
|
"INSTALL_TARGETS command is used to install the target. Use the "
|
|
|
|
"INSTALL command instead.");
|
|
|
|
|
2008-01-28 23:12:12 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("PRIVATE_HEADER", cmProperty::TARGET,
|
|
|
|
"Specify private header files in a FRAMEWORK shared library target.",
|
|
|
|
"Shared library targets marked with the FRAMEWORK property generate "
|
|
|
|
"frameworks on OS X and normal shared libraries on other platforms. "
|
|
|
|
"This property may be set to a list of header files to be placed "
|
|
|
|
"in the PrivateHeaders directory inside the framework folder. "
|
|
|
|
"On non-Apple platforms these headers may be installed using the "
|
|
|
|
"PRIVATE_HEADER option to the install(TARGETS) command.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("PUBLIC_HEADER", cmProperty::TARGET,
|
|
|
|
"Specify public header files in a FRAMEWORK shared library target.",
|
|
|
|
"Shared library targets marked with the FRAMEWORK property generate "
|
|
|
|
"frameworks on OS X and normal shared libraries on other platforms. "
|
|
|
|
"This property may be set to a list of header files to be placed "
|
|
|
|
"in the Headers directory inside the framework folder. "
|
|
|
|
"On non-Apple platforms these headers may be installed using the "
|
|
|
|
"PUBLIC_HEADER option to the install(TARGETS) command.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("RESOURCE", cmProperty::TARGET,
|
|
|
|
"Specify resource files in a FRAMEWORK shared library target.",
|
|
|
|
"Shared library targets marked with the FRAMEWORK property generate "
|
|
|
|
"frameworks on OS X and normal shared libraries on other platforms. "
|
|
|
|
"This property may be set to a list of files to be placed "
|
|
|
|
"in the Resources directory inside the framework folder. "
|
|
|
|
"On non-Apple platforms these files may be installed using the "
|
|
|
|
"RESOURCE option to the install(TARGETS) command.");
|
|
|
|
|
2009-02-10 16:51:15 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("RULE_LAUNCH_COMPILE", cmProperty::TARGET,
|
|
|
|
"Specify a launcher for compile rules.",
|
|
|
|
"See the global property of the same name for details. "
|
|
|
|
"This overrides the global and directory property for a target.",
|
|
|
|
true);
|
|
|
|
cm->DefineProperty
|
|
|
|
("RULE_LAUNCH_LINK", cmProperty::TARGET,
|
|
|
|
"Specify a launcher for link rules.",
|
|
|
|
"See the global property of the same name for details. "
|
|
|
|
"This overrides the global and directory property for a target.",
|
|
|
|
true);
|
|
|
|
cm->DefineProperty
|
|
|
|
("RULE_LAUNCH_CUSTOM", cmProperty::TARGET,
|
|
|
|
"Specify a launcher for custom rules.",
|
|
|
|
"See the global property of the same name for details. "
|
|
|
|
"This overrides the global and directory property for a target.",
|
|
|
|
true);
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("SKIP_BUILD_RPATH", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Should rpaths be used for the build tree.",
|
|
|
|
"SKIP_BUILD_RPATH is a boolean specifying whether to skip automatic "
|
|
|
|
"generation of an rpath allowing the target to run from the "
|
2009-03-19 17:53:51 +03:00
|
|
|
"build tree. "
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_SKIP_BUILD_RPATH if it is set when a target is created.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2012-04-22 17:42:55 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("NO_SONAME", cmProperty::TARGET,
|
|
|
|
"Whether to set \"soname\" when linking a shared library or module.",
|
|
|
|
"Enable this boolean property if a generated shared library or module "
|
|
|
|
"should not have \"soname\" set. Default is to set \"soname\" on all "
|
|
|
|
"shared libraries and modules as long as the platform supports it. "
|
|
|
|
"Generally, use this property only for leaf private libraries or "
|
|
|
|
"plugins. If you use it on normal shared libraries which other targets "
|
|
|
|
"link against, on some platforms a linker will insert a full path to "
|
|
|
|
"the library (as specified at link time) into the dynamic section of "
|
2012-05-02 23:06:35 +04:00
|
|
|
"the dependent binary. Therefore, once installed, dynamic loader may "
|
2012-04-22 17:42:55 +04:00
|
|
|
"eventually fail to locate the library for the binary.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("SOVERSION", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"What version number is this target.",
|
|
|
|
"For shared libraries VERSION and SOVERSION can be used to specify "
|
|
|
|
"the build version and api version respectively. When building or "
|
|
|
|
"installing appropriate symlinks are created if the platform "
|
|
|
|
"supports symlinks and the linker supports so-names. "
|
|
|
|
"If only one of both is specified the missing is assumed to have "
|
|
|
|
"the same version number. "
|
2012-04-22 17:42:55 +04:00
|
|
|
"SOVERSION is ignored if NO_SONAME property is set. "
|
2006-12-07 17:45:32 +03:00
|
|
|
"For shared libraries and executables on Windows the VERSION "
|
|
|
|
"attribute is parsed to extract a \"major.minor\" version number. "
|
|
|
|
"These numbers are used as the image version of the binary. ");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("STATIC_LIBRARY_FLAGS", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"Extra flags to use when linking static libraries.",
|
|
|
|
"Extra flags to use when linking a static library.");
|
|
|
|
|
2010-05-28 18:45:54 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("STATIC_LIBRARY_FLAGS_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration flags for creating a static library.",
|
|
|
|
"This is the configuration-specific version of STATIC_LIBRARY_FLAGS.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("SUFFIX", cmProperty::TARGET,
|
2012-04-02 18:00:27 +04:00
|
|
|
"What comes after the target name.",
|
2006-12-07 17:45:32 +03:00
|
|
|
"A target property that can be set to override the suffix "
|
2012-04-02 18:00:27 +04:00
|
|
|
"(such as \".so\" or \".exe\") on the name of a library, module or "
|
|
|
|
"executable.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2008-10-03 02:48:06 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("TYPE", cmProperty::TARGET,
|
|
|
|
"The type of the target.",
|
|
|
|
"This read-only property can be used to test the type of the given "
|
|
|
|
"target. It will be one of STATIC_LIBRARY, MODULE_LIBRARY, "
|
|
|
|
"SHARED_LIBRARY, EXECUTABLE or one of the internal target types.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("VERSION", cmProperty::TARGET,
|
2006-12-07 17:45:32 +03:00
|
|
|
"What version number is this target.",
|
|
|
|
"For shared libraries VERSION and SOVERSION can be used to specify "
|
|
|
|
"the build version and api version respectively. When building or "
|
|
|
|
"installing appropriate symlinks are created if the platform "
|
|
|
|
"supports symlinks and the linker supports so-names. "
|
|
|
|
"If only one of both is specified the missing is assumed to have "
|
|
|
|
"the same version number. "
|
|
|
|
"For executables VERSION can be used to specify the build version. "
|
|
|
|
"When building or installing appropriate symlinks are created if "
|
|
|
|
"the platform supports symlinks. "
|
|
|
|
"For shared libraries and executables on Windows the VERSION "
|
|
|
|
"attribute is parsed to extract a \"major.minor\" version number. "
|
|
|
|
"These numbers are used as the image version of the binary. ");
|
|
|
|
|
|
|
|
|
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("WIN32_EXECUTABLE", cmProperty::TARGET,
|
2008-02-11 21:35:39 +03:00
|
|
|
"Build an executable with a WinMain entry point on windows.",
|
|
|
|
"When this property is set to true the executable when linked "
|
|
|
|
"on Windows will be created with a WinMain() entry point instead "
|
2012-08-21 00:26:05 +04:00
|
|
|
"of just main(). "
|
2008-02-11 21:35:39 +03:00
|
|
|
"This makes it a GUI executable instead of a console application. "
|
|
|
|
"See the CMAKE_MFC_FLAG variable documentation to configure use "
|
2012-03-05 18:36:46 +04:00
|
|
|
"of MFC for WinMain executables. "
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_WIN32_EXECUTABLE if it is set when a target is created.");
|
2008-02-11 21:35:39 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("MACOSX_BUNDLE", cmProperty::TARGET,
|
|
|
|
"Build an executable as an application bundle on Mac OS X.",
|
|
|
|
"When this property is set to true the executable when built "
|
|
|
|
"on Mac OS X will be created as an application bundle. "
|
|
|
|
"This makes it a GUI executable that can be launched from "
|
2008-05-17 20:53:56 +04:00
|
|
|
"the Finder. "
|
|
|
|
"See the MACOSX_BUNDLE_INFO_PLIST target property for information "
|
2012-03-05 18:36:46 +04:00
|
|
|
"about creation of the Info.plist file for the application bundle. "
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_MACOSX_BUNDLE if it is set when a target is created.");
|
2008-05-17 20:53:56 +04:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("MACOSX_BUNDLE_INFO_PLIST", cmProperty::TARGET,
|
|
|
|
"Specify a custom Info.plist template for a Mac OS X App Bundle.",
|
|
|
|
"An executable target with MACOSX_BUNDLE enabled will be built as an "
|
|
|
|
"application bundle on Mac OS X. "
|
|
|
|
"By default its Info.plist file is created by configuring a template "
|
|
|
|
"called MacOSXBundleInfo.plist.in located in the CMAKE_MODULE_PATH. "
|
|
|
|
"This property specifies an alternative template file name which "
|
|
|
|
"may be a full path.\n"
|
|
|
|
"The following target properties may be set to specify content to "
|
|
|
|
"be configured into the file:\n"
|
2008-02-14 23:31:08 +03:00
|
|
|
" MACOSX_BUNDLE_INFO_STRING\n"
|
|
|
|
" MACOSX_BUNDLE_ICON_FILE\n"
|
|
|
|
" MACOSX_BUNDLE_GUI_IDENTIFIER\n"
|
|
|
|
" MACOSX_BUNDLE_LONG_VERSION_STRING\n"
|
|
|
|
" MACOSX_BUNDLE_BUNDLE_NAME\n"
|
|
|
|
" MACOSX_BUNDLE_SHORT_VERSION_STRING\n"
|
|
|
|
" MACOSX_BUNDLE_BUNDLE_VERSION\n"
|
|
|
|
" MACOSX_BUNDLE_COPYRIGHT\n"
|
2008-05-17 20:53:56 +04:00
|
|
|
"CMake variables of the same name may be set to affect all targets "
|
2008-09-02 20:06:32 +04:00
|
|
|
"in a directory that do not have each specific property set. "
|
|
|
|
"If a custom Info.plist is specified by this property it may of course "
|
|
|
|
"hard-code all the settings instead of using the target properties.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("MACOSX_FRAMEWORK_INFO_PLIST", cmProperty::TARGET,
|
|
|
|
"Specify a custom Info.plist template for a Mac OS X Framework.",
|
|
|
|
"An library target with FRAMEWORK enabled will be built as a "
|
|
|
|
"framework on Mac OS X. "
|
|
|
|
"By default its Info.plist file is created by configuring a template "
|
|
|
|
"called MacOSXFrameworkInfo.plist.in located in the CMAKE_MODULE_PATH. "
|
|
|
|
"This property specifies an alternative template file name which "
|
|
|
|
"may be a full path.\n"
|
|
|
|
"The following target properties may be set to specify content to "
|
|
|
|
"be configured into the file:\n"
|
|
|
|
" MACOSX_FRAMEWORK_ICON_FILE\n"
|
|
|
|
" MACOSX_FRAMEWORK_IDENTIFIER\n"
|
|
|
|
" MACOSX_FRAMEWORK_SHORT_VERSION_STRING\n"
|
|
|
|
" MACOSX_FRAMEWORK_BUNDLE_VERSION\n"
|
|
|
|
"CMake variables of the same name may be set to affect all targets "
|
2008-05-17 20:53:56 +04:00
|
|
|
"in a directory that do not have each specific property set. "
|
|
|
|
"If a custom Info.plist is specified by this property it may of course "
|
|
|
|
"hard-code all the settings instead of using the target properties.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2007-03-22 16:45:25 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("ENABLE_EXPORTS", cmProperty::TARGET,
|
|
|
|
"Specify whether an executable exports symbols for loadable modules.",
|
|
|
|
"Normally an executable does not export any symbols because it is "
|
|
|
|
"the final program. It is possible for an executable to export "
|
|
|
|
"symbols to be used by loadable modules. When this property is "
|
|
|
|
"set to true CMake will allow other targets to \"link\" to the "
|
|
|
|
"executable with the TARGET_LINK_LIBRARIES command. "
|
|
|
|
"On all platforms a target-level dependency on the executable is "
|
|
|
|
"created for targets that link to it. "
|
|
|
|
"For DLL platforms an import library will be created for the "
|
|
|
|
"exported symbols and then used for linking. "
|
2010-10-11 16:35:19 +04:00
|
|
|
"All Windows-based systems including Cygwin are DLL platforms. "
|
|
|
|
"For non-DLL platforms that require all symbols to be resolved at "
|
|
|
|
"link time, such as Mac OS X, the module will \"link\" to the "
|
|
|
|
"executable using a flag like \"-bundle_loader\". "
|
|
|
|
"For other non-DLL platforms the link rule is simply ignored since "
|
|
|
|
"the dynamic loader will automatically bind symbols when the "
|
|
|
|
"module is loaded. "
|
|
|
|
);
|
2007-03-22 16:45:25 +03:00
|
|
|
|
2011-08-31 18:24:43 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("Fortran_FORMAT", cmProperty::TARGET,
|
|
|
|
"Set to FIXED or FREE to indicate the Fortran source layout.",
|
|
|
|
"This property tells CMake whether the Fortran source files "
|
|
|
|
"in a target use fixed-format or free-format. "
|
|
|
|
"CMake will pass the corresponding format flag to the compiler. "
|
|
|
|
"Use the source-specific Fortran_FORMAT property to change the "
|
|
|
|
"format of a specific source file. "
|
|
|
|
"If the variable CMAKE_Fortran_FORMAT is set when a target "
|
|
|
|
"is created its value is used to initialize this property.");
|
|
|
|
|
2007-12-31 00:11:38 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("Fortran_MODULE_DIRECTORY", cmProperty::TARGET,
|
|
|
|
"Specify output directory for Fortran modules provided by the target.",
|
|
|
|
"If the target contains Fortran source files that provide modules "
|
|
|
|
"and the compiler supports a module output directory this specifies "
|
|
|
|
"the directory in which the modules will be placed. "
|
|
|
|
"When this property is not set the modules will be placed in the "
|
2008-03-28 20:07:03 +03:00
|
|
|
"build directory corresponding to the target's source directory. "
|
|
|
|
"If the variable CMAKE_Fortran_MODULE_DIRECTORY is set when a target "
|
2012-03-12 19:54:54 +04:00
|
|
|
"is created its value is used to initialize this property."
|
|
|
|
"\n"
|
|
|
|
"Note that some compilers will automatically search the module output "
|
|
|
|
"directory for modules USEd during compilation but others will not. "
|
|
|
|
"If your sources USE modules their location must be specified by "
|
|
|
|
"INCLUDE_DIRECTORIES regardless of this property.");
|
2007-12-31 00:11:38 +03:00
|
|
|
|
2011-12-06 01:39:07 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("GNUtoMS", cmProperty::TARGET,
|
|
|
|
"Convert GNU import library (.dll.a) to MS format (.lib).",
|
|
|
|
"When linking a shared library or executable that exports symbols "
|
|
|
|
"using GNU tools on Windows (MinGW/MSYS) with Visual Studio installed "
|
|
|
|
"convert the import library (.dll.a) from GNU to MS format (.lib). "
|
|
|
|
"Both import libraries will be installed by install(TARGETS) and "
|
|
|
|
"exported by install(EXPORT) and export() to be linked by applications "
|
|
|
|
"with either GNU- or MS-compatible tools."
|
|
|
|
"\n"
|
|
|
|
"If the variable CMAKE_GNUtoMS is set when a target "
|
|
|
|
"is created its value is used to initialize this property. "
|
|
|
|
"The variable must be set prior to the first command that enables "
|
|
|
|
"a language such as project() or enable_language(). "
|
|
|
|
"CMake provides the variable as an option to the user automatically "
|
|
|
|
"when configuring on Windows with GNU tools.");
|
|
|
|
|
2007-09-10 18:22:19 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("XCODE_ATTRIBUTE_<an-attribute>", cmProperty::TARGET,
|
|
|
|
"Set Xcode target attributes directly.",
|
|
|
|
"Tell the Xcode generator to set '<an-attribute>' to a given value "
|
|
|
|
"in the generated Xcode project. Ignored on other generators.");
|
|
|
|
|
2007-04-10 17:54:01 +04:00
|
|
|
cm->DefineProperty
|
2007-07-02 21:32:41 +04:00
|
|
|
("GENERATOR_FILE_NAME", cmProperty::TARGET,
|
2007-04-10 17:54:01 +04:00
|
|
|
"Generator's file for this target.",
|
|
|
|
"An internal property used by some generators to record the name of "
|
|
|
|
"project or dsp file associated with this target.");
|
|
|
|
|
2007-12-17 18:12:22 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("SOURCES", cmProperty::TARGET,
|
|
|
|
"Source names specified for a target.",
|
|
|
|
"Read-only list of sources specified for a target. "
|
|
|
|
"The names returned are suitable for passing to the "
|
|
|
|
"set_source_files_properties command.");
|
|
|
|
|
2010-09-03 21:53:22 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("FOLDER", cmProperty::TARGET,
|
|
|
|
"Set the folder name. Use to organize targets in an IDE.",
|
|
|
|
"Targets with no FOLDER property will appear as top level "
|
|
|
|
"entities in IDEs like Visual Studio. Targets with the same "
|
|
|
|
"FOLDER property value will appear next to each other in a "
|
|
|
|
"folder of that name. To nest folders, use FOLDER values such "
|
|
|
|
"as 'GUI/Dialogs' with '/' characters separating folder levels.");
|
|
|
|
|
2008-10-08 00:46:25 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("PROJECT_LABEL", cmProperty::TARGET,
|
|
|
|
"Change the name of a target in an IDE.",
|
|
|
|
"Can be used to change the name of the target in an IDE "
|
2010-09-03 21:53:22 +04:00
|
|
|
"like Visual Studio. ");
|
2008-10-08 00:46:25 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("VS_KEYWORD", cmProperty::TARGET,
|
|
|
|
"Visual Studio project keyword.",
|
|
|
|
"Can be set to change the visual studio keyword, for example "
|
2012-08-28 13:22:17 +04:00
|
|
|
"Qt integration works better if this is set to Qt4VSv1.0. ");
|
2008-10-08 00:46:25 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("VS_SCC_PROVIDER", cmProperty::TARGET,
|
|
|
|
"Visual Studio Source Code Control Provider.",
|
|
|
|
"Can be set to change the visual studio source code control "
|
|
|
|
"provider property.");
|
|
|
|
cm->DefineProperty
|
|
|
|
("VS_SCC_LOCALPATH", cmProperty::TARGET,
|
2011-11-01 04:04:08 +04:00
|
|
|
"Visual Studio Source Code Control Local Path.",
|
2008-10-08 00:46:25 +04:00
|
|
|
"Can be set to change the visual studio source code control "
|
|
|
|
"local path property.");
|
|
|
|
cm->DefineProperty
|
|
|
|
("VS_SCC_PROJECTNAME", cmProperty::TARGET,
|
|
|
|
"Visual Studio Source Code Control Project.",
|
|
|
|
"Can be set to change the visual studio source code control "
|
|
|
|
"project name property.");
|
2011-11-01 04:04:08 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("VS_SCC_AUXPATH", cmProperty::TARGET,
|
|
|
|
"Visual Studio Source Code Control Aux Path.",
|
|
|
|
"Can be set to change the visual studio source code control "
|
|
|
|
"auxpath property.");
|
2011-11-23 23:11:00 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("VS_GLOBAL_PROJECT_TYPES", cmProperty::TARGET,
|
|
|
|
"Visual Studio project type(s).",
|
|
|
|
"Can be set to one or more UUIDs recognized by Visual Studio "
|
|
|
|
"to indicate the type of project. This value is copied "
|
|
|
|
"verbatim into the generated project file. Example for a "
|
2012-02-18 19:11:18 +04:00
|
|
|
"managed C++ unit testing project:\n"
|
|
|
|
" {3AC096D0-A1C2-E12C-1390-A8335801FDAB};"
|
|
|
|
"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\n"
|
|
|
|
"UUIDs are semicolon-delimited.");
|
2011-11-23 23:11:00 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("VS_GLOBAL_KEYWORD", cmProperty::TARGET,
|
|
|
|
"Visual Studio project keyword.",
|
|
|
|
"Sets the \"keyword\" attribute for a generated Visual Studio "
|
|
|
|
"project. Defaults to \"Win32Proj\". You may wish to override "
|
|
|
|
"this value with \"ManagedCProj\", for example, in a Visual "
|
|
|
|
"Studio managed C++ unit test project.");
|
|
|
|
cm->DefineProperty
|
|
|
|
("VS_DOTNET_REFERENCES", cmProperty::TARGET,
|
|
|
|
"Visual Studio managed project .NET references",
|
|
|
|
"Adds one or more semicolon-delimited .NET references to a "
|
|
|
|
"generated Visual Studio project. For example, \"System;"
|
|
|
|
"System.Windows.Forms\".");
|
2012-02-03 18:07:12 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("VS_WINRT_EXTENSIONS", cmProperty::TARGET,
|
|
|
|
"Visual Studio project C++/CX language extensions for Windows Runtime",
|
|
|
|
"Can be set to enable C++/CX language extensions.");
|
|
|
|
cm->DefineProperty
|
|
|
|
("VS_WINRT_REFERENCES", cmProperty::TARGET,
|
|
|
|
"Visual Studio project Windows Runtime Metadata references",
|
|
|
|
"Adds one or more semicolon-delimited WinRT references to a "
|
|
|
|
"generated Visual Studio project. For example, \"Windows;"
|
|
|
|
"Windows.UI.Core\".");
|
2011-07-29 18:04:36 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("VS_GLOBAL_<variable>", cmProperty::TARGET,
|
|
|
|
"Visual Studio project-specific global variable.",
|
|
|
|
"Tell the Visual Studio generator to set the global variable "
|
|
|
|
"'<variable>' to a given value in the generated Visual Studio "
|
|
|
|
"project. Ignored on other generators. Qt integration works "
|
|
|
|
"better if VS_GLOBAL_QtVersion is set to the version "
|
|
|
|
"FindQt4.cmake found. For example, \"4.7.3\"");
|
2008-10-08 00:46:25 +04:00
|
|
|
|
2007-03-09 23:14:27 +03:00
|
|
|
#define CM_TARGET_FILE_TYPES_DOC \
|
|
|
|
"There are three kinds of target files that may be built: " \
|
|
|
|
"archive, library, and runtime. " \
|
|
|
|
"Executables are always treated as runtime targets. " \
|
|
|
|
"Static libraries are always treated as archive targets. " \
|
|
|
|
"Module libraries are always treated as library targets. " \
|
|
|
|
"For non-DLL platforms shared libraries are treated as library " \
|
|
|
|
"targets. " \
|
|
|
|
"For DLL platforms the DLL part of a shared library is treated as " \
|
|
|
|
"a runtime target and the corresponding import library is treated as " \
|
|
|
|
"an archive target. " \
|
|
|
|
"All Windows-based systems including Cygwin are DLL platforms."
|
|
|
|
|
2009-10-28 20:34:59 +03:00
|
|
|
#define CM_TARGET_OUTDIR_DOC(TYPE, type) \
|
|
|
|
"This property specifies the directory into which " #type " target " \
|
|
|
|
"files should be built. " \
|
2009-10-28 20:35:25 +03:00
|
|
|
"Multi-configuration generators (VS, Xcode) append " \
|
|
|
|
"a per-configuration subdirectory to the specified directory. " \
|
2009-10-28 20:34:59 +03:00
|
|
|
CM_TARGET_FILE_TYPES_DOC " " \
|
|
|
|
"This property is initialized by the value of the variable " \
|
|
|
|
"CMAKE_" #TYPE "_OUTPUT_DIRECTORY if it is set when a target is created."
|
|
|
|
|
2009-10-28 20:35:25 +03:00
|
|
|
#define CM_TARGET_OUTDIR_CONFIG_DOC(TYPE) \
|
|
|
|
"This is a per-configuration version of " #TYPE "_OUTPUT_DIRECTORY, " \
|
|
|
|
"but multi-configuration generators (VS, Xcode) do NOT append " \
|
|
|
|
"a per-configuration subdirectory to the specified directory. " \
|
|
|
|
"This property is initialized by the value of the variable " \
|
|
|
|
"CMAKE_" #TYPE "_OUTPUT_DIRECTORY_<CONFIG> " \
|
|
|
|
"if it is set when a target is created."
|
|
|
|
|
2007-03-09 23:14:27 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("ARCHIVE_OUTPUT_DIRECTORY", cmProperty::TARGET,
|
|
|
|
"Output directory in which to build ARCHIVE target files.",
|
2009-10-28 20:34:59 +03:00
|
|
|
CM_TARGET_OUTDIR_DOC(ARCHIVE, archive));
|
2009-10-28 20:35:25 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("ARCHIVE_OUTPUT_DIRECTORY_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration output directory for ARCHIVE target files.",
|
|
|
|
CM_TARGET_OUTDIR_CONFIG_DOC(ARCHIVE));
|
2007-03-09 23:14:27 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("LIBRARY_OUTPUT_DIRECTORY", cmProperty::TARGET,
|
|
|
|
"Output directory in which to build LIBRARY target files.",
|
2009-10-28 20:34:59 +03:00
|
|
|
CM_TARGET_OUTDIR_DOC(LIBRARY, library));
|
2009-10-28 20:35:25 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("LIBRARY_OUTPUT_DIRECTORY_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration output directory for LIBRARY target files.",
|
|
|
|
CM_TARGET_OUTDIR_CONFIG_DOC(LIBRARY));
|
2007-03-09 23:14:27 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("RUNTIME_OUTPUT_DIRECTORY", cmProperty::TARGET,
|
|
|
|
"Output directory in which to build RUNTIME target files.",
|
2009-10-28 20:34:59 +03:00
|
|
|
CM_TARGET_OUTDIR_DOC(RUNTIME, runtime));
|
2009-10-28 20:35:25 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("RUNTIME_OUTPUT_DIRECTORY_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration output directory for RUNTIME target files.",
|
|
|
|
CM_TARGET_OUTDIR_CONFIG_DOC(RUNTIME));
|
2007-03-09 23:14:27 +03:00
|
|
|
|
2012-09-25 05:30:42 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("PDB_OUTPUT_DIRECTORY", cmProperty::TARGET,
|
|
|
|
"Output directory for MS debug symbols .pdb files.",
|
|
|
|
"This property specifies the directory into which the MS debug symbols "
|
|
|
|
"will be placed. "
|
|
|
|
"This property is initialized by the value of the variable "
|
2012-09-25 22:36:03 +04:00
|
|
|
"CMAKE_PDB_OUTPUT_DIRECTORY if it is set when a target is created."
|
|
|
|
"\n"
|
|
|
|
"This property is not implemented by the Visual Studio 6 generator.");
|
2012-09-25 05:30:42 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("PDB_OUTPUT_DIRECTORY_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration output directory for MS debug symbols .pdb files.",
|
|
|
|
"This is a per-configuration version of PDB_OUTPUT_DIRECTORY, "
|
|
|
|
"but multi-configuration generators (VS, Xcode) do NOT append "
|
|
|
|
"a per-configuration subdirectory to the specified directory. "
|
|
|
|
"This property is initialized by the value of the variable "
|
|
|
|
"CMAKE_PDB_OUTPUT_DIRECTORY_<CONFIG> "
|
2012-09-25 22:36:03 +04:00
|
|
|
"if it is set when a target is created."
|
|
|
|
"\n"
|
|
|
|
"This property is not implemented by the Visual Studio 6 generator.");
|
2012-09-25 05:30:42 +04:00
|
|
|
|
2009-05-01 17:45:43 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("ARCHIVE_OUTPUT_NAME", cmProperty::TARGET,
|
|
|
|
"Output name for ARCHIVE target files.",
|
|
|
|
"This property specifies the base name for archive target files. "
|
|
|
|
"It overrides OUTPUT_NAME and OUTPUT_NAME_<CONFIG> properties. "
|
|
|
|
CM_TARGET_FILE_TYPES_DOC);
|
|
|
|
cm->DefineProperty
|
|
|
|
("ARCHIVE_OUTPUT_NAME_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration output name for ARCHIVE target files.",
|
|
|
|
"This is the configuration-specific version of ARCHIVE_OUTPUT_NAME.");
|
|
|
|
cm->DefineProperty
|
|
|
|
("LIBRARY_OUTPUT_NAME", cmProperty::TARGET,
|
|
|
|
"Output name for LIBRARY target files.",
|
|
|
|
"This property specifies the base name for library target files. "
|
|
|
|
"It overrides OUTPUT_NAME and OUTPUT_NAME_<CONFIG> properties. "
|
|
|
|
CM_TARGET_FILE_TYPES_DOC);
|
|
|
|
cm->DefineProperty
|
|
|
|
("LIBRARY_OUTPUT_NAME_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration output name for LIBRARY target files.",
|
|
|
|
"This is the configuration-specific version of LIBRARY_OUTPUT_NAME.");
|
|
|
|
cm->DefineProperty
|
|
|
|
("RUNTIME_OUTPUT_NAME", cmProperty::TARGET,
|
|
|
|
"Output name for RUNTIME target files.",
|
|
|
|
"This property specifies the base name for runtime target files. "
|
|
|
|
"It overrides OUTPUT_NAME and OUTPUT_NAME_<CONFIG> properties. "
|
|
|
|
CM_TARGET_FILE_TYPES_DOC);
|
|
|
|
cm->DefineProperty
|
|
|
|
("RUNTIME_OUTPUT_NAME_<CONFIG>", cmProperty::TARGET,
|
|
|
|
"Per-configuration output name for RUNTIME target files.",
|
|
|
|
"This is the configuration-specific version of RUNTIME_OUTPUT_NAME.");
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
2002-05-04 00:34:05 +04:00
|
|
|
|
2004-09-22 22:42:05 +04:00
|
|
|
void cmTarget::SetType(TargetType type, const char* name)
|
2002-11-20 02:01:05 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Name = name;
|
2002-11-20 02:01:05 +03:00
|
|
|
// only add dependency information for library targets
|
2006-03-15 19:02:08 +03:00
|
|
|
this->TargetTypeValue = type;
|
2007-07-02 21:32:41 +04:00
|
|
|
if(this->TargetTypeValue >= STATIC_LIBRARY
|
|
|
|
&& this->TargetTypeValue <= MODULE_LIBRARY)
|
2006-03-15 19:02:08 +03:00
|
|
|
{
|
|
|
|
this->RecordDependencies = true;
|
2007-07-02 21:32:41 +04:00
|
|
|
}
|
|
|
|
else
|
2006-03-15 19:02:08 +03:00
|
|
|
{
|
|
|
|
this->RecordDependencies = false;
|
|
|
|
}
|
2002-11-20 02:01:05 +03:00
|
|
|
}
|
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::SetMakefile(cmMakefile* mf)
|
|
|
|
{
|
|
|
|
// Set our makefile.
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile = mf;
|
2006-02-16 23:19:00 +03:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
// set the cmake instance of the properties
|
|
|
|
this->Properties.SetCMakeInstance(mf->GetCMakeInstance());
|
|
|
|
|
2007-03-19 17:00:36 +03:00
|
|
|
// Check whether this is a DLL platform.
|
|
|
|
this->DLLPlatform = (this->Makefile->IsOn("WIN32") ||
|
|
|
|
this->Makefile->IsOn("CYGWIN") ||
|
|
|
|
this->Makefile->IsOn("MINGW"));
|
|
|
|
|
2011-12-02 01:21:25 +04:00
|
|
|
// Check whether we are targeting an Apple platform.
|
|
|
|
this->IsApple = this->Makefile->IsOn("APPLE");
|
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
// Setup default property values.
|
2006-02-24 21:13:14 +03:00
|
|
|
this->SetPropertyDefault("INSTALL_NAME_DIR", "");
|
2006-02-16 23:19:00 +03:00
|
|
|
this->SetPropertyDefault("INSTALL_RPATH", "");
|
2006-06-15 18:12:19 +04:00
|
|
|
this->SetPropertyDefault("INSTALL_RPATH_USE_LINK_PATH", "OFF");
|
2006-02-16 23:19:00 +03:00
|
|
|
this->SetPropertyDefault("SKIP_BUILD_RPATH", "OFF");
|
|
|
|
this->SetPropertyDefault("BUILD_WITH_INSTALL_RPATH", "OFF");
|
2007-03-09 23:14:27 +03:00
|
|
|
this->SetPropertyDefault("ARCHIVE_OUTPUT_DIRECTORY", 0);
|
|
|
|
this->SetPropertyDefault("LIBRARY_OUTPUT_DIRECTORY", 0);
|
|
|
|
this->SetPropertyDefault("RUNTIME_OUTPUT_DIRECTORY", 0);
|
2012-09-25 05:30:42 +04:00
|
|
|
this->SetPropertyDefault("PDB_OUTPUT_DIRECTORY", 0);
|
2011-08-31 18:24:43 +04:00
|
|
|
this->SetPropertyDefault("Fortran_FORMAT", 0);
|
2007-12-31 00:11:38 +03:00
|
|
|
this->SetPropertyDefault("Fortran_MODULE_DIRECTORY", 0);
|
2011-12-06 01:39:07 +04:00
|
|
|
this->SetPropertyDefault("GNUtoMS", 0);
|
2009-10-21 21:00:49 +04:00
|
|
|
this->SetPropertyDefault("OSX_ARCHITECTURES", 0);
|
2011-08-17 00:05:33 +04:00
|
|
|
this->SetPropertyDefault("AUTOMOC", 0);
|
2011-11-01 17:33:11 +04:00
|
|
|
this->SetPropertyDefault("AUTOMOC_MOC_OPTIONS", 0);
|
2012-10-26 16:25:36 +04:00
|
|
|
this->SetPropertyDefault("LINK_DEPENDS_NO_SHARED", 0);
|
2011-10-01 14:23:56 +04:00
|
|
|
this->SetPropertyDefault("LINK_INTERFACE_LIBRARIES", 0);
|
2012-03-05 18:36:46 +04:00
|
|
|
this->SetPropertyDefault("WIN32_EXECUTABLE", 0);
|
|
|
|
this->SetPropertyDefault("MACOSX_BUNDLE", 0);
|
2006-03-02 06:45:13 +03:00
|
|
|
|
|
|
|
// Collect the set of configuration types.
|
|
|
|
std::vector<std::string> configNames;
|
2010-09-08 22:54:49 +04:00
|
|
|
mf->GetConfigurations(configNames);
|
2006-03-02 06:45:13 +03:00
|
|
|
|
|
|
|
// Setup per-configuration property default values.
|
2009-10-28 20:35:25 +03:00
|
|
|
const char* configProps[] = {
|
|
|
|
"ARCHIVE_OUTPUT_DIRECTORY_",
|
|
|
|
"LIBRARY_OUTPUT_DIRECTORY_",
|
|
|
|
"RUNTIME_OUTPUT_DIRECTORY_",
|
2012-09-25 05:30:42 +04:00
|
|
|
"PDB_OUTPUT_DIRECTORY_",
|
2009-10-28 20:35:25 +03:00
|
|
|
0};
|
2006-03-02 06:45:13 +03:00
|
|
|
for(std::vector<std::string>::iterator ci = configNames.begin();
|
|
|
|
ci != configNames.end(); ++ci)
|
|
|
|
{
|
2009-10-28 20:35:25 +03:00
|
|
|
std::string configUpper = cmSystemTools::UpperCase(*ci);
|
|
|
|
for(const char** p = configProps; *p; ++p)
|
|
|
|
{
|
|
|
|
std::string property = *p;
|
|
|
|
property += configUpper;
|
|
|
|
this->SetPropertyDefault(property.c_str(), 0);
|
|
|
|
}
|
|
|
|
|
2006-03-02 06:45:13 +03:00
|
|
|
// Initialize per-configuration name postfix property from the
|
|
|
|
// variable only for non-executable targets. This preserves
|
|
|
|
// compatibility with previous CMake versions in which executables
|
|
|
|
// did not support this variable. Projects may still specify the
|
|
|
|
// property directly. TODO: Make this depend on backwards
|
|
|
|
// compatibility setting.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->TargetTypeValue != cmTarget::EXECUTABLE)
|
2006-03-02 06:45:13 +03:00
|
|
|
{
|
|
|
|
std::string property = cmSystemTools::UpperCase(*ci);
|
|
|
|
property += "_POSTFIX";
|
|
|
|
this->SetPropertyDefault(property.c_str(), 0);
|
|
|
|
}
|
|
|
|
}
|
2008-03-13 20:48:57 +03:00
|
|
|
|
|
|
|
// Save the backtrace of target construction.
|
|
|
|
this->Makefile->GetBacktrace(this->Internal->Backtrace);
|
2008-03-13 23:23:18 +03:00
|
|
|
|
2011-12-04 19:40:39 +04:00
|
|
|
// Initialize the INCLUDE_DIRECTORIES property based on the current value
|
|
|
|
// of the same directory property:
|
2012-11-20 01:47:30 +04:00
|
|
|
const std::vector<cmMakefileIncludeDirectoriesEntry> parentIncludes =
|
|
|
|
this->Makefile->GetIncludeDirectoriesEntries();
|
|
|
|
|
|
|
|
for (std::vector<cmMakefileIncludeDirectoriesEntry>::const_iterator it
|
|
|
|
= parentIncludes.begin(); it != parentIncludes.end(); ++it)
|
|
|
|
{
|
|
|
|
this->InsertInclude(*it);
|
|
|
|
}
|
2011-12-04 19:40:39 +04:00
|
|
|
|
2012-05-30 22:13:09 +04:00
|
|
|
if(this->TargetTypeValue == cmTarget::SHARED_LIBRARY
|
|
|
|
|| this->TargetTypeValue == cmTarget::MODULE_LIBRARY)
|
|
|
|
{
|
|
|
|
this->SetProperty("POSITION_INDEPENDENT_CODE", "True");
|
|
|
|
}
|
|
|
|
this->SetPropertyDefault("POSITION_INDEPENDENT_CODE", 0);
|
|
|
|
|
2008-03-13 23:23:18 +03:00
|
|
|
// Record current policies for later use.
|
|
|
|
this->PolicyStatusCMP0003 =
|
|
|
|
this->Makefile->GetPolicyStatus(cmPolicies::CMP0003);
|
2008-03-13 23:35:39 +03:00
|
|
|
this->PolicyStatusCMP0004 =
|
|
|
|
this->Makefile->GetPolicyStatus(cmPolicies::CMP0004);
|
2008-07-23 20:59:14 +04:00
|
|
|
this->PolicyStatusCMP0008 =
|
|
|
|
this->Makefile->GetPolicyStatus(cmPolicies::CMP0008);
|
2008-03-13 20:48:57 +03:00
|
|
|
}
|
|
|
|
|
2009-10-05 17:06:29 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::FinishConfigure()
|
|
|
|
{
|
2009-10-05 17:06:59 +04:00
|
|
|
// Erase any cached link information that might have been comptued
|
|
|
|
// on-demand during the configuration. This ensures that build
|
|
|
|
// system generation uses up-to-date information even if other cache
|
|
|
|
// invalidation code in this source file is buggy.
|
|
|
|
this->ClearLinkMaps();
|
|
|
|
|
2009-10-05 17:06:29 +04:00
|
|
|
// Do old-style link dependency analysis.
|
|
|
|
this->AnalyzeLibDependencies(*this->Makefile);
|
|
|
|
}
|
|
|
|
|
2009-10-05 17:06:59 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::ClearLinkMaps()
|
|
|
|
{
|
|
|
|
this->Internal->LinkImplMap.clear();
|
|
|
|
this->Internal->LinkInterfaceMap.clear();
|
|
|
|
this->Internal->LinkClosureMap.clear();
|
|
|
|
}
|
|
|
|
|
2008-03-13 20:48:57 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmListFileBacktrace const& cmTarget::GetBacktrace() const
|
|
|
|
{
|
|
|
|
return this->Internal->Backtrace;
|
2006-02-16 23:19:00 +03:00
|
|
|
}
|
2002-11-20 02:01:05 +03:00
|
|
|
|
2009-02-10 16:50:09 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetSupportDirectory() const
|
|
|
|
{
|
|
|
|
std::string dir = this->Makefile->GetCurrentOutputDirectory();
|
|
|
|
dir += cmake::GetCMakeFilesDirectory();
|
|
|
|
dir += "/";
|
|
|
|
dir += this->Name;
|
2009-06-10 21:03:11 +04:00
|
|
|
#if defined(__VMS)
|
|
|
|
dir += "_dir";
|
|
|
|
#else
|
2009-02-10 16:50:09 +03:00
|
|
|
dir += ".dir";
|
2009-06-10 21:03:11 +04:00
|
|
|
#endif
|
2009-02-10 16:50:09 +03:00
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::IsExecutableWithExports()
|
|
|
|
{
|
2008-01-28 21:05:58 +03:00
|
|
|
return (this->GetType() == cmTarget::EXECUTABLE &&
|
|
|
|
this->GetPropertyAsBool("ENABLE_EXPORTS"));
|
|
|
|
}
|
|
|
|
|
2008-08-18 19:39:22 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::IsLinkable()
|
|
|
|
{
|
|
|
|
return (this->GetType() == cmTarget::STATIC_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::UNKNOWN_LIBRARY ||
|
|
|
|
this->IsExecutableWithExports());
|
|
|
|
}
|
|
|
|
|
2009-08-11 17:07:42 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::HasImportLibrary()
|
|
|
|
{
|
|
|
|
return (this->DLLPlatform &&
|
|
|
|
(this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->IsExecutableWithExports()));
|
|
|
|
}
|
|
|
|
|
2008-01-28 21:05:58 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::IsFrameworkOnApple()
|
|
|
|
{
|
|
|
|
return (this->GetType() == cmTarget::SHARED_LIBRARY &&
|
|
|
|
this->Makefile->IsOn("APPLE") &&
|
|
|
|
this->GetPropertyAsBool("FRAMEWORK"));
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
|
2008-01-28 22:46:16 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::IsAppBundleOnApple()
|
|
|
|
{
|
|
|
|
return (this->GetType() == cmTarget::EXECUTABLE &&
|
|
|
|
this->Makefile->IsOn("APPLE") &&
|
|
|
|
this->GetPropertyAsBool("MACOSX_BUNDLE"));
|
|
|
|
}
|
|
|
|
|
2010-10-07 06:43:04 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::IsCFBundleOnApple()
|
|
|
|
{
|
|
|
|
return (this->GetType() == cmTarget::MODULE_LIBRARY &&
|
|
|
|
this->Makefile->IsOn("APPLE") &&
|
|
|
|
this->GetPropertyAsBool("BUNDLE"));
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
class cmTargetTraceDependencies
|
|
|
|
{
|
|
|
|
public:
|
2009-09-07 18:11:43 +04:00
|
|
|
cmTargetTraceDependencies(cmTarget* target, cmTargetInternals* internal,
|
|
|
|
const char* vsProjectFile);
|
2007-06-18 19:59:23 +04:00
|
|
|
void Trace();
|
|
|
|
private:
|
|
|
|
cmTarget* Target;
|
2009-09-07 18:11:43 +04:00
|
|
|
cmTargetInternals* Internal;
|
2007-06-18 19:59:23 +04:00
|
|
|
cmMakefile* Makefile;
|
|
|
|
cmGlobalGenerator* GlobalGenerator;
|
2009-09-07 18:11:43 +04:00
|
|
|
typedef cmTargetInternals::SourceEntry SourceEntry;
|
|
|
|
SourceEntry* CurrentEntry;
|
2009-09-04 20:39:18 +04:00
|
|
|
std::queue<cmSourceFile*> SourceQueue;
|
|
|
|
std::set<cmSourceFile*> SourcesQueued;
|
|
|
|
typedef std::map<cmStdString, cmSourceFile*> NameMapType;
|
|
|
|
NameMapType NameMap;
|
|
|
|
|
|
|
|
void QueueSource(cmSourceFile* sf);
|
|
|
|
void FollowName(std::string const& name);
|
|
|
|
void FollowNames(std::vector<std::string> const& names);
|
2007-06-18 19:59:23 +04:00
|
|
|
bool IsUtility(std::string const& dep);
|
|
|
|
void CheckCustomCommand(cmCustomCommand const& cc);
|
|
|
|
void CheckCustomCommands(const std::vector<cmCustomCommand>& commands);
|
|
|
|
};
|
2007-05-09 16:25:45 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTargetTraceDependencies
|
2009-09-07 18:11:43 +04:00
|
|
|
::cmTargetTraceDependencies(cmTarget* target, cmTargetInternals* internal,
|
|
|
|
const char* vsProjectFile):
|
|
|
|
Target(target), Internal(internal)
|
2007-05-23 21:27:00 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// Convenience.
|
|
|
|
this->Makefile = this->Target->GetMakefile();
|
|
|
|
this->GlobalGenerator =
|
|
|
|
this->Makefile->GetLocalGenerator()->GetGlobalGenerator();
|
2009-09-07 18:11:43 +04:00
|
|
|
this->CurrentEntry = 0;
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Queue all the source files already specified for the target.
|
|
|
|
std::vector<cmSourceFile*> const& sources = this->Target->GetSourceFiles();
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator si = sources.begin();
|
|
|
|
si != sources.end(); ++si)
|
2007-05-23 21:27:00 +04:00
|
|
|
{
|
2009-09-04 20:39:18 +04:00
|
|
|
this->QueueSource(*si);
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Queue the VS project file to check dependencies on the rule to
|
|
|
|
// generate it.
|
|
|
|
if(vsProjectFile)
|
|
|
|
{
|
2009-09-04 20:39:18 +04:00
|
|
|
this->FollowName(vsProjectFile);
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Queue pre-build, pre-link, and post-build rule dependencies.
|
|
|
|
this->CheckCustomCommands(this->Target->GetPreBuildCommands());
|
|
|
|
this->CheckCustomCommands(this->Target->GetPreLinkCommands());
|
|
|
|
this->CheckCustomCommands(this->Target->GetPostBuildCommands());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTargetTraceDependencies::Trace()
|
|
|
|
{
|
|
|
|
// Process one dependency at a time until the queue is empty.
|
2009-09-04 20:39:18 +04:00
|
|
|
while(!this->SourceQueue.empty())
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2009-09-04 20:39:18 +04:00
|
|
|
// Get the next source from the queue.
|
|
|
|
cmSourceFile* sf = this->SourceQueue.front();
|
|
|
|
this->SourceQueue.pop();
|
2009-09-07 18:11:43 +04:00
|
|
|
this->CurrentEntry = &this->Internal->SourceEntries[sf];
|
2007-06-18 19:59:23 +04:00
|
|
|
|
2009-09-04 20:39:18 +04:00
|
|
|
// Queue dependencies added explicitly by the user.
|
|
|
|
if(const char* additionalDeps = sf->GetProperty("OBJECT_DEPENDS"))
|
2007-05-23 21:27:00 +04:00
|
|
|
{
|
2009-09-04 20:39:18 +04:00
|
|
|
std::vector<std::string> objDeps;
|
|
|
|
cmSystemTools::ExpandListArgument(additionalDeps, objDeps);
|
|
|
|
this->FollowNames(objDeps);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Queue the source needed to generate this file, if any.
|
|
|
|
this->FollowName(sf->GetFullPath());
|
2007-06-18 19:59:23 +04:00
|
|
|
|
2009-09-04 20:39:18 +04:00
|
|
|
// Queue dependencies added programatically by commands.
|
|
|
|
this->FollowNames(sf->GetDepends());
|
|
|
|
|
|
|
|
// Queue custom command dependencies.
|
|
|
|
if(cmCustomCommand const* cc = sf->GetCustomCommand())
|
|
|
|
{
|
|
|
|
this->CheckCustomCommand(*cc);
|
2007-05-23 21:27:00 +04:00
|
|
|
}
|
|
|
|
}
|
2009-09-07 18:11:43 +04:00
|
|
|
this->CurrentEntry = 0;
|
2007-05-23 21:27:00 +04:00
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2009-09-04 20:39:18 +04:00
|
|
|
void cmTargetTraceDependencies::QueueSource(cmSourceFile* sf)
|
|
|
|
{
|
|
|
|
if(this->SourcesQueued.insert(sf).second)
|
|
|
|
{
|
|
|
|
this->SourceQueue.push(sf);
|
|
|
|
|
|
|
|
// Make sure this file is in the target.
|
|
|
|
this->Target->AddSourceFile(sf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTargetTraceDependencies::FollowName(std::string const& name)
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2009-09-04 20:39:18 +04:00
|
|
|
NameMapType::iterator i = this->NameMap.find(name);
|
|
|
|
if(i == this->NameMap.end())
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2009-09-04 20:39:18 +04:00
|
|
|
// Check if we know how to generate this file.
|
|
|
|
cmSourceFile* sf = this->Makefile->GetSourceFileWithOutput(name.c_str());
|
|
|
|
NameMapType::value_type entry(name, sf);
|
|
|
|
i = this->NameMap.insert(entry).first;
|
|
|
|
}
|
|
|
|
if(cmSourceFile* sf = i->second)
|
|
|
|
{
|
2009-09-07 18:11:43 +04:00
|
|
|
// Record the dependency we just followed.
|
|
|
|
if(this->CurrentEntry)
|
|
|
|
{
|
|
|
|
this->CurrentEntry->Depends.push_back(sf);
|
|
|
|
}
|
|
|
|
|
2009-09-04 20:39:18 +04:00
|
|
|
this->QueueSource(sf);
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-05-23 21:27:00 +04:00
|
|
|
void
|
2009-09-04 20:39:18 +04:00
|
|
|
cmTargetTraceDependencies::FollowNames(std::vector<std::string> const& names)
|
2007-05-09 16:25:45 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
for(std::vector<std::string>::const_iterator i = names.begin();
|
|
|
|
i != names.end(); ++i)
|
2007-05-09 16:25:45 +04:00
|
|
|
{
|
2009-09-04 20:39:18 +04:00
|
|
|
this->FollowName(*i);
|
2007-05-09 16:25:45 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTargetTraceDependencies::IsUtility(std::string const& dep)
|
|
|
|
{
|
|
|
|
// Dependencies on targets (utilities) are supposed to be named by
|
|
|
|
// just the target name. However for compatibility we support
|
|
|
|
// naming the output file generated by the target (assuming there is
|
|
|
|
// no output-name property which old code would not have set). In
|
|
|
|
// that case the target name will be the file basename of the
|
|
|
|
// dependency.
|
|
|
|
std::string util = cmSystemTools::GetFilenameName(dep);
|
|
|
|
if(cmSystemTools::GetFilenameLastExtension(util) == ".exe")
|
|
|
|
{
|
|
|
|
util = cmSystemTools::GetFilenameWithoutLastExtension(util);
|
|
|
|
}
|
2007-05-09 16:25:45 +04:00
|
|
|
|
2010-12-08 20:22:13 +03:00
|
|
|
// Check for a target with this name.
|
|
|
|
if(cmTarget* t = this->Makefile->FindTargetToUse(util.c_str()))
|
2003-06-24 23:10:47 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// If we find the target and the dep was given as a full path,
|
|
|
|
// then make sure it was not a full path to something else, and
|
|
|
|
// the fact that the name matched a target was just a coincidence.
|
|
|
|
if(cmSystemTools::FileIsFullPath(dep.c_str()))
|
2003-07-31 23:32:53 +04:00
|
|
|
{
|
2011-08-17 00:05:33 +04:00
|
|
|
if(t->GetType() >= cmTarget::EXECUTABLE &&
|
2009-09-25 21:23:19 +04:00
|
|
|
t->GetType() <= cmTarget::MODULE_LIBRARY)
|
2005-07-26 21:26:37 +04:00
|
|
|
{
|
2009-09-25 21:23:19 +04:00
|
|
|
// This is really only for compatibility so we do not need to
|
|
|
|
// worry about configuration names and output names.
|
|
|
|
std::string tLocation = t->GetLocation(0);
|
|
|
|
tLocation = cmSystemTools::GetFilenamePath(tLocation);
|
|
|
|
std::string depLocation = cmSystemTools::GetFilenamePath(dep);
|
|
|
|
depLocation = cmSystemTools::CollapseFullPath(depLocation.c_str());
|
|
|
|
tLocation = cmSystemTools::CollapseFullPath(tLocation.c_str());
|
|
|
|
if(depLocation == tLocation)
|
|
|
|
{
|
|
|
|
this->Target->AddUtility(util.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
2003-07-31 23:32:53 +04:00
|
|
|
}
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// The original name of the dependency was not a full path. It
|
|
|
|
// must name a target, so add the target-level dependency.
|
|
|
|
this->Target->AddUtility(util.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
2003-07-31 23:32:53 +04:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// The dependency does not name a target built in this project.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmTargetTraceDependencies
|
|
|
|
::CheckCustomCommand(cmCustomCommand const& cc)
|
|
|
|
{
|
|
|
|
// Transform command names that reference targets built in this
|
|
|
|
// project to corresponding target-level dependencies.
|
2012-09-12 17:11:25 +04:00
|
|
|
cmGeneratorExpression ge(cc.GetBacktrace());
|
|
|
|
|
|
|
|
// Add target-level dependencies referenced by generator expressions.
|
|
|
|
std::set<cmTarget*> targets;
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
for(cmCustomCommandLines::const_iterator cit = cc.GetCommandLines().begin();
|
|
|
|
cit != cc.GetCommandLines().end(); ++cit)
|
2003-06-24 23:10:47 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
std::string const& command = *cit->begin();
|
2010-12-08 20:22:13 +03:00
|
|
|
// Check for a target with this name.
|
|
|
|
if(cmTarget* t = this->Makefile->FindTargetToUse(command.c_str()))
|
2003-06-24 23:10:47 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
if(t->GetType() == cmTarget::EXECUTABLE)
|
2003-06-24 23:10:47 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// The command refers to an executable target built in
|
|
|
|
// this project. Add the target-level dependency to make
|
|
|
|
// sure the executable is up to date before this custom
|
|
|
|
// command possibly runs.
|
|
|
|
this->Target->AddUtility(command.c_str());
|
2003-06-24 23:10:47 +04:00
|
|
|
}
|
|
|
|
}
|
2010-12-09 00:13:07 +03:00
|
|
|
|
|
|
|
// Check for target references in generator expressions.
|
|
|
|
for(cmCustomCommandLine::const_iterator cli = cit->begin();
|
|
|
|
cli != cit->end(); ++cli)
|
|
|
|
{
|
2012-11-19 22:30:56 +04:00
|
|
|
const cmsys::auto_ptr<cmCompiledGeneratorExpression> cge
|
|
|
|
= ge.Parse(*cli);
|
|
|
|
cge->Evaluate(this->Makefile, 0, true);
|
|
|
|
std::set<cmTarget*> geTargets = cge->GetTargets();
|
2012-09-12 17:11:25 +04:00
|
|
|
for(std::set<cmTarget*>::const_iterator it = geTargets.begin();
|
|
|
|
it != geTargets.end(); ++it)
|
|
|
|
{
|
|
|
|
targets.insert(*it);
|
|
|
|
}
|
2010-12-09 00:13:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(std::set<cmTarget*>::iterator ti = targets.begin();
|
|
|
|
ti != targets.end(); ++ti)
|
|
|
|
{
|
|
|
|
this->Target->AddUtility((*ti)->GetName());
|
2003-06-24 23:10:47 +04:00
|
|
|
}
|
2007-05-09 17:35:59 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
// Queue the custom command dependencies.
|
|
|
|
std::vector<std::string> const& depends = cc.GetDepends();
|
|
|
|
for(std::vector<std::string>::const_iterator di = depends.begin();
|
|
|
|
di != depends.end(); ++di)
|
2003-06-24 23:10:47 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
std::string const& dep = *di;
|
|
|
|
if(!this->IsUtility(dep))
|
2003-06-24 23:10:47 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// The dependency does not name a target and may be a file we
|
|
|
|
// know how to generate. Queue it.
|
2009-09-04 20:39:18 +04:00
|
|
|
this->FollowName(dep);
|
2003-06-24 23:10:47 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmTargetTraceDependencies
|
|
|
|
::CheckCustomCommands(const std::vector<cmCustomCommand>& commands)
|
2001-04-25 00:49:12 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
for(std::vector<cmCustomCommand>::const_iterator cli = commands.begin();
|
|
|
|
cli != commands.end(); ++cli)
|
2007-02-17 00:12:17 +03:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
this->CheckCustomCommand(*cli);
|
2007-02-17 00:12:17 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::TraceDependencies(const char* vsProjectFile)
|
|
|
|
{
|
2010-12-09 18:12:12 +03:00
|
|
|
// CMake-generated targets have no dependencies to trace. Normally tracing
|
|
|
|
// would find nothing anyway, but when building CMake itself the "install"
|
|
|
|
// target command ends up referencing the "cmake" target but we do not
|
|
|
|
// really want the dependency because "install" depend on "all" anyway.
|
|
|
|
if(this->GetType() == cmTarget::GLOBAL_TARGET)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
// Use a helper object to trace the dependencies.
|
2009-09-07 18:11:43 +04:00
|
|
|
cmTargetTraceDependencies tracer(this, this->Internal.Get(), vsProjectFile);
|
2007-06-18 19:59:23 +04:00
|
|
|
tracer.Trace();
|
|
|
|
}
|
|
|
|
|
2008-05-13 01:43:45 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::FindSourceFiles()
|
|
|
|
{
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator
|
|
|
|
si = this->SourceFiles.begin();
|
|
|
|
si != this->SourceFiles.end(); ++si)
|
|
|
|
{
|
2010-09-13 23:56:06 +04:00
|
|
|
std::string e;
|
|
|
|
if((*si)->GetFullPath(&e).empty())
|
2008-05-13 01:43:45 +04:00
|
|
|
{
|
2010-09-13 23:56:06 +04:00
|
|
|
if(!e.empty())
|
|
|
|
{
|
|
|
|
cmake* cm = this->Makefile->GetCMakeInstance();
|
|
|
|
cm->IssueMessage(cmake::FATAL_ERROR, e,
|
|
|
|
this->GetBacktrace());
|
|
|
|
}
|
2008-05-13 01:43:45 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-04 20:39:05 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::vector<cmSourceFile*> const& cmTarget::GetSourceFiles()
|
|
|
|
{
|
|
|
|
return this->SourceFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::AddSourceFile(cmSourceFile* sf)
|
|
|
|
{
|
2009-09-07 18:11:43 +04:00
|
|
|
typedef cmTargetInternals::SourceEntriesType SourceEntriesType;
|
|
|
|
SourceEntriesType::iterator i = this->Internal->SourceEntries.find(sf);
|
|
|
|
if(i == this->Internal->SourceEntries.end())
|
2009-09-04 20:39:05 +04:00
|
|
|
{
|
2009-09-07 18:11:43 +04:00
|
|
|
typedef cmTargetInternals::SourceEntry SourceEntry;
|
|
|
|
SourceEntriesType::value_type entry(sf, SourceEntry());
|
|
|
|
i = this->Internal->SourceEntries.insert(entry).first;
|
2009-09-04 20:39:05 +04:00
|
|
|
this->SourceFiles.push_back(sf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-07 18:11:43 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::vector<cmSourceFile*> const*
|
|
|
|
cmTarget::GetSourceDepends(cmSourceFile* sf)
|
|
|
|
{
|
|
|
|
typedef cmTargetInternals::SourceEntriesType SourceEntriesType;
|
|
|
|
SourceEntriesType::iterator i = this->Internal->SourceEntries.find(sf);
|
|
|
|
if(i != this->Internal->SourceEntries.end())
|
|
|
|
{
|
|
|
|
return &i->second.Depends;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::AddSources(std::vector<std::string> const& srcs)
|
|
|
|
{
|
|
|
|
for(std::vector<std::string>::const_iterator i = srcs.begin();
|
|
|
|
i != srcs.end(); ++i)
|
2001-04-25 00:49:12 +04:00
|
|
|
{
|
2012-03-12 22:40:58 +04:00
|
|
|
const char* src = i->c_str();
|
|
|
|
if(src[0] == '$' && src[1] == '<')
|
|
|
|
{
|
|
|
|
this->ProcessSourceExpression(*i);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->AddSource(src);
|
|
|
|
}
|
2001-04-25 00:49:12 +04:00
|
|
|
}
|
|
|
|
}
|
2001-04-30 18:44:00 +04:00
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2007-06-18 19:59:23 +04:00
|
|
|
cmSourceFile* cmTarget::AddSource(const char* s)
|
|
|
|
{
|
|
|
|
std::string src = s;
|
|
|
|
|
|
|
|
// For backwards compatibility replace varibles in source names.
|
|
|
|
// This should eventually be removed.
|
|
|
|
this->Makefile->ExpandVariablesInString(src);
|
|
|
|
|
|
|
|
cmSourceFile* sf = this->Makefile->GetOrCreateSource(src.c_str());
|
|
|
|
this->AddSourceFile(sf);
|
|
|
|
return sf;
|
|
|
|
}
|
|
|
|
|
2012-03-12 22:40:58 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::ProcessSourceExpression(std::string const& expr)
|
|
|
|
{
|
|
|
|
if(strncmp(expr.c_str(), "$<TARGET_OBJECTS:", 17) == 0 &&
|
|
|
|
expr[expr.size()-1] == '>')
|
|
|
|
{
|
|
|
|
std::string objLibName = expr.substr(17, expr.size()-18);
|
|
|
|
this->ObjectLibraries.push_back(objLibName);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Unrecognized generator expression:\n"
|
|
|
|
<< " " << expr;
|
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-10 19:06:15 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
struct cmTarget::SourceFileFlags
|
|
|
|
cmTarget::GetTargetSourceFileFlags(const cmSourceFile* sf)
|
|
|
|
{
|
|
|
|
struct SourceFileFlags flags;
|
2008-02-19 00:38:34 +03:00
|
|
|
this->ConstructSourceFileFlags();
|
|
|
|
std::map<cmSourceFile const*, SourceFileFlags>::iterator si =
|
|
|
|
this->Internal->SourceFlagsMap.find(sf);
|
|
|
|
if(si != this->Internal->SourceFlagsMap.end())
|
|
|
|
{
|
|
|
|
flags = si->second;
|
|
|
|
}
|
|
|
|
return flags;
|
|
|
|
}
|
2007-10-10 19:06:15 +04:00
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::ConstructSourceFileFlags()
|
|
|
|
{
|
|
|
|
if(this->Internal->SourceFileFlagsConstructed)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->Internal->SourceFileFlagsConstructed = true;
|
2007-10-10 19:06:15 +04:00
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
// Process public headers to mark the source files.
|
|
|
|
if(const char* files = this->GetProperty("PUBLIC_HEADER"))
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> relFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(files, relFiles);
|
2008-02-19 00:38:34 +03:00
|
|
|
for(std::vector<std::string>::iterator it = relFiles.begin();
|
|
|
|
it != relFiles.end(); ++it)
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
if(cmSourceFile* sf = this->Makefile->GetSource(it->c_str()))
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
SourceFileFlags& flags = this->Internal->SourceFlagsMap[sf];
|
|
|
|
flags.MacFolder = "Headers";
|
|
|
|
flags.Type = cmTarget::SourceFileTypePublicHeader;
|
2007-10-10 19:06:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
// Process private headers after public headers so that they take
|
|
|
|
// precedence if a file is listed in both.
|
|
|
|
if(const char* files = this->GetProperty("PRIVATE_HEADER"))
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
std::vector<std::string> relFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(files, relFiles);
|
|
|
|
for(std::vector<std::string>::iterator it = relFiles.begin();
|
|
|
|
it != relFiles.end(); ++it)
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
if(cmSourceFile* sf = this->Makefile->GetSource(it->c_str()))
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
SourceFileFlags& flags = this->Internal->SourceFlagsMap[sf];
|
|
|
|
flags.MacFolder = "PrivateHeaders";
|
|
|
|
flags.Type = cmTarget::SourceFileTypePrivateHeader;
|
2007-10-10 19:06:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
// Mark sources listed as resources.
|
|
|
|
if(const char* files = this->GetProperty("RESOURCE"))
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
std::vector<std::string> relFiles;
|
|
|
|
cmSystemTools::ExpandListArgument(files, relFiles);
|
|
|
|
for(std::vector<std::string>::iterator it = relFiles.begin();
|
|
|
|
it != relFiles.end(); ++it)
|
|
|
|
{
|
|
|
|
if(cmSourceFile* sf = this->Makefile->GetSource(it->c_str()))
|
|
|
|
{
|
|
|
|
SourceFileFlags& flags = this->Internal->SourceFlagsMap[sf];
|
|
|
|
flags.MacFolder = "Resources";
|
|
|
|
flags.Type = cmTarget::SourceFileTypeResource;
|
|
|
|
}
|
|
|
|
}
|
2007-10-10 19:06:15 +04:00
|
|
|
}
|
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
// Handle the MACOSX_PACKAGE_LOCATION property on source files that
|
|
|
|
// were not listed in one of the other lists.
|
|
|
|
std::vector<cmSourceFile*> const& sources = this->GetSourceFiles();
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator si = sources.begin();
|
|
|
|
si != sources.end(); ++si)
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
cmSourceFile* sf = *si;
|
|
|
|
if(const char* location = sf->GetProperty("MACOSX_PACKAGE_LOCATION"))
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
SourceFileFlags& flags = this->Internal->SourceFlagsMap[sf];
|
|
|
|
if(flags.Type == cmTarget::SourceFileTypeNormal)
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
flags.MacFolder = location;
|
|
|
|
if(strcmp(location, "Resources") == 0)
|
2007-10-10 19:06:15 +04:00
|
|
|
{
|
2008-02-19 00:38:34 +03:00
|
|
|
flags.Type = cmTarget::SourceFileTypeResource;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flags.Type = cmTarget::SourceFileTypeMacContent;
|
2007-10-10 19:06:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-05-04 00:34:05 +04:00
|
|
|
void cmTarget::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
|
|
|
{
|
2002-05-10 21:35:42 +04:00
|
|
|
// Only add on libraries we haven't added on before.
|
|
|
|
// Assumption: the global link libraries could only grow, never shrink
|
2006-03-15 19:02:08 +03:00
|
|
|
LinkLibraryVectorType::const_iterator i = libs.begin();
|
|
|
|
i += this->PrevLinkedLibraries.size();
|
2002-05-10 21:35:42 +04:00
|
|
|
for( ; i != libs.end(); ++i )
|
2002-05-04 00:34:05 +04:00
|
|
|
{
|
2002-05-10 21:35:42 +04:00
|
|
|
// We call this so that the dependencies get written to the cache
|
|
|
|
this->AddLinkLibrary( mf, selfname, i->first.c_str(), i->second );
|
2002-05-04 00:34:05 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->PrevLinkedLibraries = libs;
|
2002-05-04 00:34:05 +04:00
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2002-05-04 00:34:05 +04:00
|
|
|
void cmTarget::AddLinkDirectory(const char* d)
|
|
|
|
{
|
|
|
|
// Make sure we don't add unnecessary search directories.
|
2008-01-22 17:13:04 +03:00
|
|
|
if(this->LinkDirectoriesEmmitted.insert(d).second)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2008-01-22 17:13:04 +03:00
|
|
|
this->LinkDirectories.push_back(d);
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
2002-05-04 00:34:05 +04:00
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const std::vector<std::string>& cmTarget::GetLinkDirectories()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->LinkDirectories;
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
2002-05-04 00:34:05 +04:00
|
|
|
|
2008-09-05 01:34:25 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTarget::LinkLibraryType cmTarget::ComputeLinkType(const char* config)
|
|
|
|
{
|
|
|
|
// No configuration is always optimized.
|
|
|
|
if(!(config && *config))
|
|
|
|
{
|
|
|
|
return cmTarget::OPTIMIZED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the list of configurations considered to be DEBUG.
|
|
|
|
std::vector<std::string> const& debugConfigs =
|
|
|
|
this->Makefile->GetCMakeInstance()->GetDebugConfigs();
|
|
|
|
|
|
|
|
// Check if any entry in the list matches this configuration.
|
|
|
|
std::string configUpper = cmSystemTools::UpperCase(config);
|
|
|
|
for(std::vector<std::string>::const_iterator i = debugConfigs.begin();
|
|
|
|
i != debugConfigs.end(); ++i)
|
|
|
|
{
|
|
|
|
if(*i == configUpper)
|
|
|
|
{
|
|
|
|
return cmTarget::DEBUG;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The current configuration is not a debug configuration.
|
|
|
|
return cmTarget::OPTIMIZED;
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::ClearDependencyInformation( cmMakefile& mf,
|
2006-05-12 22:12:13 +04:00
|
|
|
const char* target )
|
2002-11-20 02:01:05 +03:00
|
|
|
{
|
|
|
|
// Clear the dependencies. The cache variable must exist iff we are
|
|
|
|
// recording dependency information for this target.
|
|
|
|
std::string depname = target;
|
|
|
|
depname += "_LIB_DEPENDS";
|
2006-03-15 19:02:08 +03:00
|
|
|
if (this->RecordDependencies)
|
2002-11-20 02:01:05 +03:00
|
|
|
{
|
|
|
|
mf.AddCacheDefinition(depname.c_str(), "",
|
|
|
|
"Dependencies for target", cmCacheManager::STATIC);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (mf.GetDefinition( depname.c_str() ))
|
|
|
|
{
|
|
|
|
std::string message = "Target ";
|
|
|
|
message += target;
|
|
|
|
message += " has dependency information when it shouldn't.\n";
|
|
|
|
message += "Your cache is probably stale. Please remove the entry\n ";
|
|
|
|
message += depname;
|
|
|
|
message += "\nfrom the cache.";
|
2007-07-02 21:32:41 +04:00
|
|
|
cmSystemTools::Error( message.c_str() );
|
2002-11-20 02:01:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-10 19:06:15 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::NameResolvesToFramework(const std::string& libname)
|
|
|
|
{
|
|
|
|
return this->GetMakefile()->GetLocalGenerator()->GetGlobalGenerator()->
|
|
|
|
NameResolvesToFramework(libname);
|
|
|
|
}
|
|
|
|
|
2012-12-06 15:14:03 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::GetDirectLinkLibraries(const char *config,
|
|
|
|
std::vector<std::string> &libs, cmTarget *head)
|
|
|
|
{
|
|
|
|
const char *prop = this->GetProperty("LINK_LIBRARIES");
|
|
|
|
if (prop)
|
|
|
|
{
|
|
|
|
cmListFileBacktrace lfbt;
|
|
|
|
cmGeneratorExpression ge(lfbt);
|
|
|
|
|
|
|
|
cmGeneratorExpressionDAGChecker dagChecker(lfbt,
|
|
|
|
this->GetName(),
|
|
|
|
"LINK_LIBRARIES", 0, 0);
|
|
|
|
cmSystemTools::ExpandListArgument(ge.Parse(prop)->Evaluate(this->Makefile,
|
|
|
|
config,
|
|
|
|
false,
|
|
|
|
head,
|
|
|
|
&dagChecker),
|
|
|
|
libs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetDebugGeneratorExpressions(const std::string &value,
|
|
|
|
cmTarget::LinkLibraryType llt)
|
|
|
|
{
|
|
|
|
if (llt == GENERAL)
|
|
|
|
{
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the list of configurations considered to be DEBUG.
|
|
|
|
std::vector<std::string> const& debugConfigs =
|
|
|
|
this->Makefile->GetCMakeInstance()->GetDebugConfigs();
|
|
|
|
|
|
|
|
std::string configString = "$<CONFIG:" + debugConfigs[0] + ">";
|
|
|
|
|
|
|
|
if (debugConfigs.size() > 1)
|
|
|
|
{
|
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
li = debugConfigs.begin() + 1; li != debugConfigs.end(); ++li)
|
|
|
|
{
|
|
|
|
configString += ",$<CONFIG:" + *li + ">";
|
|
|
|
}
|
|
|
|
configString = "$<OR:" + configString + ">";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (llt == OPTIMIZED)
|
|
|
|
{
|
|
|
|
configString = "$<NOT:" + configString + ">";
|
|
|
|
}
|
|
|
|
return "$<" + configString + ":" + value + ">";
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static std::string targetNameGenex(const char *lib)
|
|
|
|
{
|
|
|
|
return std::string("$<TARGET_NAME:") + lib + ">";
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-05-01 22:00:21 +04:00
|
|
|
void cmTarget::AddLinkLibrary(cmMakefile& mf,
|
2007-07-02 21:32:41 +04:00
|
|
|
const char *target, const char* lib,
|
2002-05-01 22:00:21 +04:00
|
|
|
LinkLibraryType llt)
|
|
|
|
{
|
2002-05-29 23:00:37 +04:00
|
|
|
// Never add a self dependency, even if the user asks for it.
|
|
|
|
if(strcmp( target, lib ) == 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2012-12-06 15:14:03 +04:00
|
|
|
|
|
|
|
{
|
|
|
|
cmTarget *tgt = this->Makefile->FindTargetToUse(lib);
|
|
|
|
const bool isNonImportedTarget = tgt && !tgt->IsImported();
|
|
|
|
|
|
|
|
std::string libName = isNonImportedTarget ? targetNameGenex(lib)
|
|
|
|
: std::string(lib);
|
|
|
|
this->AppendProperty("LINK_LIBRARIES",
|
|
|
|
this->GetDebugGeneratorExpressions(libName,
|
|
|
|
llt).c_str());
|
|
|
|
}
|
|
|
|
|
2006-11-30 01:10:29 +03:00
|
|
|
cmTarget::LibraryID tmp;
|
2006-11-29 23:45:49 +03:00
|
|
|
tmp.first = lib;
|
|
|
|
tmp.second = llt;
|
|
|
|
this->LinkLibraries.push_back( tmp );
|
2008-01-27 21:42:49 +03:00
|
|
|
this->OriginalLinkLibraries.push_back(tmp);
|
2009-10-05 17:06:59 +04:00
|
|
|
this->ClearLinkMaps();
|
2002-05-01 22:00:21 +04:00
|
|
|
|
2002-05-02 23:56:13 +04:00
|
|
|
// Add the explicit dependency information for this target. This is
|
|
|
|
// simply a set of libraries separated by ";". There should always
|
|
|
|
// be a trailing ";". These library names are not canonical, in that
|
|
|
|
// they may be "-framework x", "-ly", "/path/libz.a", etc.
|
2002-11-20 02:01:05 +03:00
|
|
|
// We shouldn't remove duplicates here because external libraries
|
|
|
|
// may be purposefully duplicated to handle recursive dependencies,
|
|
|
|
// and we removing one instance will break the link line. Duplicates
|
|
|
|
// will be appropriately eliminated at emit time.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->RecordDependencies)
|
2002-05-02 23:56:13 +04:00
|
|
|
{
|
2002-06-03 18:25:55 +04:00
|
|
|
std::string targetEntry = target;
|
|
|
|
targetEntry += "_LIB_DEPENDS";
|
|
|
|
std::string dependencies;
|
|
|
|
const char* old_val = mf.GetDefinition( targetEntry.c_str() );
|
|
|
|
if( old_val )
|
|
|
|
{
|
|
|
|
dependencies += old_val;
|
|
|
|
}
|
2006-11-29 19:00:17 +03:00
|
|
|
switch (llt)
|
|
|
|
{
|
|
|
|
case cmTarget::GENERAL:
|
|
|
|
dependencies += "general";
|
|
|
|
break;
|
|
|
|
case cmTarget::DEBUG:
|
|
|
|
dependencies += "debug";
|
|
|
|
break;
|
|
|
|
case cmTarget::OPTIMIZED:
|
|
|
|
dependencies += "optimized";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
dependencies += ";";
|
2002-11-20 02:01:05 +03:00
|
|
|
dependencies += lib;
|
|
|
|
dependencies += ";";
|
2002-06-03 18:25:55 +04:00
|
|
|
mf.AddCacheDefinition( targetEntry.c_str(), dependencies.c_str(),
|
2007-07-02 21:32:41 +04:00
|
|
|
"Dependencies for the target",
|
2002-06-03 18:25:55 +04:00
|
|
|
cmCacheManager::STATIC );
|
2002-05-02 23:56:13 +04:00
|
|
|
}
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2001-04-30 18:44:00 +04:00
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-05-01 22:00:21 +04:00
|
|
|
void
|
|
|
|
cmTarget::AnalyzeLibDependencies( const cmMakefile& mf )
|
|
|
|
{
|
2002-05-03 08:27:34 +04:00
|
|
|
// There are two key parts of the dependency analysis: (1)
|
|
|
|
// determining the libraries in the link line, and (2) constructing
|
|
|
|
// the dependency graph for those libraries.
|
|
|
|
//
|
|
|
|
// The latter is done using the cache entries that record the
|
|
|
|
// dependencies of each library.
|
|
|
|
//
|
|
|
|
// The former is a more thorny issue, since it is not clear how to
|
|
|
|
// determine if two libraries listed on the link line refer to the a
|
|
|
|
// single library or not. For example, consider the link "libraries"
|
2007-07-02 21:32:41 +04:00
|
|
|
// /usr/lib/libtiff.so -ltiff
|
2002-05-03 08:27:34 +04:00
|
|
|
// Is this one library or two? The solution implemented here is the
|
|
|
|
// simplest (and probably the only practical) one: two libraries are
|
|
|
|
// the same if their "link strings" are identical. Thus, the two
|
|
|
|
// libraries above are considered distinct. This also means that for
|
|
|
|
// dependency analysis to be effective, the CMake user must specify
|
|
|
|
// libraries build by his project without using any linker flags or
|
|
|
|
// file extensions. That is,
|
|
|
|
// LINK_LIBRARIES( One Two )
|
|
|
|
// instead of
|
|
|
|
// LINK_LIBRARIES( -lOne ${binarypath}/libTwo.a )
|
|
|
|
// The former is probably what most users would do, but it never
|
|
|
|
// hurts to document the assumptions. :-) Therefore, in the analysis
|
|
|
|
// code, the "canonical name" of a library is simply its name as
|
|
|
|
// given to a LINK_LIBRARIES command.
|
2002-05-04 00:34:05 +04:00
|
|
|
//
|
|
|
|
// Also, we will leave the original link line intact; we will just add any
|
|
|
|
// dependencies that were missing.
|
2002-11-20 02:01:05 +03:00
|
|
|
//
|
|
|
|
// There is a problem with recursive external libraries
|
|
|
|
// (i.e. libraries with no dependency information that are
|
|
|
|
// recursively dependent). We must make sure that the we emit one of
|
|
|
|
// the libraries twice to satisfy the recursion, but we shouldn't
|
|
|
|
// emit it more times than necessary. In particular, we must make
|
|
|
|
// sure that handling this improbable case doesn't cost us when
|
|
|
|
// dealing with the common case of non-recursive libraries. The
|
|
|
|
// solution is to assume that the recursion is satisfied at one node
|
|
|
|
// of the dependency tree. To illustrate, assume libA and libB are
|
|
|
|
// extrenal and mutually dependent. Suppose libX depends on
|
|
|
|
// libA, and libY on libA and libX. Then
|
|
|
|
// TARGET_LINK_LIBRARIES( Y X A B A )
|
|
|
|
// TARGET_LINK_LIBRARIES( X A B A )
|
|
|
|
// TARGET_LINK_LIBRARIES( Exec Y )
|
|
|
|
// would result in "-lY -lX -lA -lB -lA". This is the correct way to
|
|
|
|
// specify the dependencies, since the mutual dependency of A and B
|
|
|
|
// is resolved *every time libA is specified*.
|
|
|
|
//
|
|
|
|
// Something like
|
|
|
|
// TARGET_LINK_LIBRARIES( Y X A B A )
|
|
|
|
// TARGET_LINK_LIBRARIES( X A B )
|
|
|
|
// TARGET_LINK_LIBRARIES( Exec Y )
|
|
|
|
// would result in "-lY -lX -lA -lB", and the mutual dependency
|
|
|
|
// information is lost. This is because in some case (Y), the mutual
|
|
|
|
// dependency of A and B is listed, while in another other case (X),
|
|
|
|
// it is not. Depending on which line actually emits A, the mutual
|
|
|
|
// dependency may or may not be on the final link line. We can't
|
|
|
|
// handle this pathalogical case cleanly without emitting extra
|
|
|
|
// libraries for the normal cases. Besides, the dependency
|
|
|
|
// information for X is wrong anyway: if we build an executable
|
|
|
|
// depending on X alone, we would not have the mutual dependency on
|
|
|
|
// A and B resolved.
|
|
|
|
//
|
|
|
|
// IMPROVEMENTS:
|
|
|
|
// -- The current algorithm will not always pick the "optimal" link line
|
|
|
|
// when recursive dependencies are present. It will instead break the
|
|
|
|
// cycles at an aribtrary point. The majority of projects won't have
|
|
|
|
// cyclic dependencies, so this is probably not a big deal. Note that
|
|
|
|
// the link line is always correct, just not necessary optimal.
|
2002-05-03 08:27:34 +04:00
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
{
|
|
|
|
// Expand variables in link library names. This is for backwards
|
|
|
|
// compatibility with very early CMake versions and should
|
|
|
|
// eventually be removed. This code was moved here from the end of
|
|
|
|
// old source list processing code which was called just before this
|
|
|
|
// method.
|
|
|
|
for(LinkLibraryVectorType::iterator p = this->LinkLibraries.begin();
|
|
|
|
p != this->LinkLibraries.end(); ++p)
|
|
|
|
{
|
|
|
|
this->Makefile->ExpandVariablesInString(p->first, true, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef std::vector< std::string > LinkLine;
|
|
|
|
|
|
|
|
// The dependency map.
|
|
|
|
DependencyMap dep_map;
|
|
|
|
|
|
|
|
// 1. Build the dependency graph
|
|
|
|
//
|
|
|
|
for(LinkLibraryVectorType::reverse_iterator lib
|
|
|
|
= this->LinkLibraries.rbegin();
|
|
|
|
lib != this->LinkLibraries.rend(); ++lib)
|
|
|
|
{
|
|
|
|
this->GatherDependencies( mf, *lib, dep_map);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Remove any dependencies that are already satisfied in the original
|
|
|
|
// link line.
|
|
|
|
//
|
|
|
|
for(LinkLibraryVectorType::iterator lib = this->LinkLibraries.begin();
|
|
|
|
lib != this->LinkLibraries.end(); ++lib)
|
|
|
|
{
|
|
|
|
for( LinkLibraryVectorType::iterator lib2 = lib;
|
|
|
|
lib2 != this->LinkLibraries.end(); ++lib2)
|
|
|
|
{
|
|
|
|
this->DeleteDependency( dep_map, *lib, *lib2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 3. Create the new link line by simply emitting any dependencies that are
|
|
|
|
// missing. Start from the back and keep adding.
|
|
|
|
//
|
|
|
|
std::set<DependencyMap::key_type> done, visited;
|
|
|
|
std::vector<DependencyMap::key_type> newLinkLibraries;
|
|
|
|
for(LinkLibraryVectorType::reverse_iterator lib =
|
|
|
|
this->LinkLibraries.rbegin();
|
|
|
|
lib != this->LinkLibraries.rend(); ++lib)
|
|
|
|
{
|
|
|
|
// skip zero size library entries, this may happen
|
|
|
|
// if a variable expands to nothing.
|
|
|
|
if (lib->first.size() != 0)
|
|
|
|
{
|
|
|
|
this->Emit( *lib, dep_map, done, visited, newLinkLibraries );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 4. Add the new libraries to the link line.
|
|
|
|
//
|
|
|
|
for( std::vector<DependencyMap::key_type>::reverse_iterator k =
|
|
|
|
newLinkLibraries.rbegin();
|
|
|
|
k != newLinkLibraries.rend(); ++k )
|
|
|
|
{
|
|
|
|
// get the llt from the dep_map
|
|
|
|
this->LinkLibraries.push_back( std::make_pair(k->first,k->second) );
|
|
|
|
}
|
|
|
|
this->LinkLibrariesAnalyzed = true;
|
2002-05-01 22:00:21 +04:00
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-11-20 02:01:05 +03:00
|
|
|
void cmTarget::InsertDependency( DependencyMap& depMap,
|
2006-11-29 19:00:17 +03:00
|
|
|
const LibraryID& lib,
|
2007-07-02 21:32:41 +04:00
|
|
|
const LibraryID& dep)
|
2002-11-20 02:01:05 +03:00
|
|
|
{
|
|
|
|
depMap[lib].push_back(dep);
|
|
|
|
}
|
2002-05-01 22:00:21 +04:00
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-11-20 02:01:05 +03:00
|
|
|
void cmTarget::DeleteDependency( DependencyMap& depMap,
|
2006-11-29 19:00:17 +03:00
|
|
|
const LibraryID& lib,
|
2007-07-02 21:32:41 +04:00
|
|
|
const LibraryID& dep)
|
2002-11-20 02:01:05 +03:00
|
|
|
{
|
|
|
|
// Make sure there is an entry in the map for lib. If so, delete all
|
|
|
|
// dependencies to dep. There may be repeated entries because of
|
|
|
|
// external libraries that are specified multiple times.
|
|
|
|
DependencyMap::iterator map_itr = depMap.find( lib );
|
|
|
|
if( map_itr != depMap.end() )
|
|
|
|
{
|
|
|
|
DependencyList& depList = map_itr->second;
|
|
|
|
DependencyList::iterator itr;
|
2007-07-02 21:32:41 +04:00
|
|
|
while( (itr = std::find(depList.begin(), depList.end(), dep)) !=
|
2006-03-10 21:54:57 +03:00
|
|
|
depList.end() )
|
2002-11-20 02:01:05 +03:00
|
|
|
{
|
|
|
|
depList.erase( itr );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-05-01 22:00:21 +04:00
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2006-11-29 19:00:17 +03:00
|
|
|
void cmTarget::Emit(const LibraryID lib,
|
|
|
|
const DependencyMap& dep_map,
|
|
|
|
std::set<LibraryID>& emitted,
|
|
|
|
std::set<LibraryID>& visited,
|
|
|
|
DependencyList& link_line )
|
2002-05-01 22:00:21 +04:00
|
|
|
{
|
|
|
|
// It's already been emitted
|
|
|
|
if( emitted.find(lib) != emitted.end() )
|
2006-11-16 18:57:00 +03:00
|
|
|
{
|
2002-05-01 22:00:21 +04:00
|
|
|
return;
|
2006-11-16 18:57:00 +03:00
|
|
|
}
|
2002-05-01 22:00:21 +04:00
|
|
|
|
2002-11-20 02:01:05 +03:00
|
|
|
// Emit the dependencies only if this library node hasn't been
|
|
|
|
// visited before. If it has, then we have a cycle. The recursion
|
|
|
|
// that got us here should take care of everything.
|
2002-05-01 22:00:21 +04:00
|
|
|
|
|
|
|
if( visited.insert(lib).second )
|
|
|
|
{
|
|
|
|
if( dep_map.find(lib) != dep_map.end() ) // does it have dependencies?
|
|
|
|
{
|
2002-11-20 02:01:05 +03:00
|
|
|
const DependencyList& dep_on = dep_map.find( lib )->second;
|
|
|
|
DependencyList::const_reverse_iterator i;
|
|
|
|
|
|
|
|
// To cater for recursive external libraries, we must emit
|
|
|
|
// duplicates on this link line *unless* they were emitted by
|
|
|
|
// some other node, in which case we assume that the recursion
|
|
|
|
// was resolved then. We making the simplifying assumption that
|
|
|
|
// any duplicates on a single link line are on purpose, and must
|
|
|
|
// be preserved.
|
|
|
|
|
|
|
|
// This variable will keep track of the libraries that were
|
2012-09-23 17:02:29 +04:00
|
|
|
// emitted directly from the current node, and not from a
|
2002-11-20 02:01:05 +03:00
|
|
|
// recursive call. This way, if we come across a library that
|
|
|
|
// has already been emitted, we repeat it iff it has been
|
|
|
|
// emitted here.
|
2006-11-29 19:00:17 +03:00
|
|
|
std::set<DependencyMap::key_type> emitted_here;
|
2002-11-20 02:01:05 +03:00
|
|
|
for( i = dep_on.rbegin(); i != dep_on.rend(); ++i )
|
2002-05-01 22:00:21 +04:00
|
|
|
{
|
2002-11-20 02:01:05 +03:00
|
|
|
if( emitted_here.find(*i) != emitted_here.end() )
|
|
|
|
{
|
|
|
|
// a repeat. Must emit.
|
|
|
|
emitted.insert(*i);
|
|
|
|
link_line.push_back( *i );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Emit only if no-one else has
|
|
|
|
if( emitted.find(*i) == emitted.end() )
|
|
|
|
{
|
|
|
|
// emit dependencies
|
|
|
|
Emit( *i, dep_map, emitted, visited, link_line );
|
|
|
|
// emit self
|
|
|
|
emitted.insert(*i);
|
|
|
|
emitted_here.insert(*i);
|
|
|
|
link_line.push_back( *i );
|
|
|
|
}
|
|
|
|
}
|
2002-05-01 22:00:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-05-01 22:00:21 +04:00
|
|
|
void cmTarget::GatherDependencies( const cmMakefile& mf,
|
2006-11-29 19:00:17 +03:00
|
|
|
const LibraryID& lib,
|
|
|
|
DependencyMap& dep_map)
|
2002-05-01 22:00:21 +04:00
|
|
|
{
|
|
|
|
// If the library is already in the dependency map, then it has
|
|
|
|
// already been fully processed.
|
|
|
|
if( dep_map.find(lib) != dep_map.end() )
|
2006-11-16 18:57:00 +03:00
|
|
|
{
|
2002-05-01 22:00:21 +04:00
|
|
|
return;
|
2006-11-16 18:57:00 +03:00
|
|
|
}
|
2002-05-01 22:00:21 +04:00
|
|
|
|
2006-11-29 19:00:17 +03:00
|
|
|
const char* deps = mf.GetDefinition( (lib.first+"_LIB_DEPENDS").c_str() );
|
2002-05-02 10:27:26 +04:00
|
|
|
if( deps && strcmp(deps,"") != 0 )
|
2002-05-01 22:00:21 +04:00
|
|
|
{
|
|
|
|
// Make sure this library is in the map, even if it has an empty
|
|
|
|
// set of dependencies. This distinguishes the case of explicitly
|
|
|
|
// no dependencies with that of unspecified dependencies.
|
|
|
|
dep_map[lib];
|
|
|
|
|
2006-11-29 19:00:17 +03:00
|
|
|
// Parse the dependency information, which is a set of
|
|
|
|
// type, library pairs separated by ";". There is always a trailing ";".
|
|
|
|
cmTarget::LinkLibraryType llt = cmTarget::GENERAL;
|
2002-05-01 22:00:21 +04:00
|
|
|
std::string depline = deps;
|
|
|
|
std::string::size_type start = 0;
|
|
|
|
std::string::size_type end;
|
|
|
|
end = depline.find( ";", start );
|
|
|
|
while( end != std::string::npos )
|
|
|
|
{
|
|
|
|
std::string l = depline.substr( start, end-start );
|
|
|
|
if( l.size() != 0 )
|
|
|
|
{
|
2006-11-29 19:00:17 +03:00
|
|
|
if (l == "debug")
|
|
|
|
{
|
|
|
|
llt = cmTarget::DEBUG;
|
|
|
|
}
|
|
|
|
else if (l == "optimized")
|
|
|
|
{
|
|
|
|
llt = cmTarget::OPTIMIZED;
|
|
|
|
}
|
|
|
|
else if (l == "general")
|
|
|
|
{
|
|
|
|
llt = cmTarget::GENERAL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LibraryID lib2(l,llt);
|
|
|
|
this->InsertDependency( dep_map, lib, lib2);
|
|
|
|
this->GatherDependencies( mf, lib2, dep_map);
|
|
|
|
llt = cmTarget::GENERAL;
|
|
|
|
}
|
2002-05-01 22:00:21 +04:00
|
|
|
}
|
|
|
|
start = end+1; // skip the ;
|
|
|
|
end = depline.find( ";", start );
|
|
|
|
}
|
2006-11-29 19:00:17 +03:00
|
|
|
// cannot depend on itself
|
2007-07-02 21:32:41 +04:00
|
|
|
this->DeleteDependency( dep_map, lib, lib);
|
2002-05-01 22:00:21 +04:00
|
|
|
}
|
|
|
|
}
|
2002-12-21 01:15:45 +03:00
|
|
|
|
2012-11-20 01:47:30 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void deleteAndClear(
|
|
|
|
std::vector<cmTargetInternals::IncludeDirectoriesEntry*> &entries)
|
|
|
|
{
|
|
|
|
for (std::vector<cmTargetInternals::IncludeDirectoriesEntry*>::const_iterator
|
|
|
|
it = entries.begin(),
|
|
|
|
end = entries.end();
|
|
|
|
it != end; ++it)
|
|
|
|
{
|
|
|
|
delete *it;
|
|
|
|
}
|
|
|
|
entries.clear();
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-12-21 01:15:45 +03:00
|
|
|
void cmTarget::SetProperty(const char* prop, const char* value)
|
|
|
|
{
|
|
|
|
if (!prop)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2012-11-20 01:47:30 +04:00
|
|
|
if(strcmp(prop,"INCLUDE_DIRECTORIES") == 0)
|
|
|
|
{
|
|
|
|
cmListFileBacktrace lfbt;
|
2012-12-18 19:16:14 +04:00
|
|
|
this->Makefile->GetBacktrace(lfbt);
|
2012-11-20 01:47:30 +04:00
|
|
|
cmGeneratorExpression ge(lfbt);
|
|
|
|
deleteAndClear(this->Internal->IncludeDirectoriesEntries);
|
|
|
|
cmsys::auto_ptr<cmCompiledGeneratorExpression> cge = ge.Parse(value);
|
|
|
|
this->Internal->IncludeDirectoriesEntries.push_back(
|
|
|
|
new cmTargetInternals::IncludeDirectoriesEntry(cge));
|
|
|
|
return;
|
|
|
|
}
|
2006-12-07 17:45:32 +03:00
|
|
|
this->Properties.SetProperty(prop, value, cmProperty::TARGET);
|
2009-10-05 17:06:44 +04:00
|
|
|
this->MaybeInvalidatePropertyCache(prop);
|
2008-01-18 02:13:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2011-07-14 01:14:41 +04:00
|
|
|
void cmTarget::AppendProperty(const char* prop, const char* value,
|
|
|
|
bool asString)
|
2008-01-18 02:13:55 +03:00
|
|
|
{
|
|
|
|
if (!prop)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2012-11-20 01:47:30 +04:00
|
|
|
if(strcmp(prop,"INCLUDE_DIRECTORIES") == 0)
|
|
|
|
{
|
|
|
|
cmListFileBacktrace lfbt;
|
2012-12-18 19:16:14 +04:00
|
|
|
this->Makefile->GetBacktrace(lfbt);
|
2012-11-20 01:47:30 +04:00
|
|
|
cmGeneratorExpression ge(lfbt);
|
|
|
|
this->Internal->IncludeDirectoriesEntries.push_back(
|
|
|
|
new cmTargetInternals::IncludeDirectoriesEntry(ge.Parse(value)));
|
|
|
|
return;
|
|
|
|
}
|
2011-07-14 01:14:41 +04:00
|
|
|
this->Properties.AppendProperty(prop, value, cmProperty::TARGET, asString);
|
2009-10-05 17:06:44 +04:00
|
|
|
this->MaybeInvalidatePropertyCache(prop);
|
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
|
2012-11-20 01:47:30 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::InsertInclude(const cmMakefileIncludeDirectoriesEntry &entry,
|
|
|
|
bool before)
|
|
|
|
{
|
|
|
|
cmGeneratorExpression ge(entry.Backtrace);
|
|
|
|
|
|
|
|
std::vector<cmTargetInternals::IncludeDirectoriesEntry*>::iterator position
|
|
|
|
= before ? this->Internal->IncludeDirectoriesEntries.begin()
|
|
|
|
: this->Internal->IncludeDirectoriesEntries.end();
|
|
|
|
|
|
|
|
this->Internal->IncludeDirectoriesEntries.insert(position,
|
|
|
|
new cmTargetInternals::IncludeDirectoriesEntry(ge.Parse(entry.Value)));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::vector<std::string> cmTarget::GetIncludeDirectories(const char *config)
|
|
|
|
{
|
|
|
|
std::vector<std::string> includes;
|
|
|
|
std::set<std::string> uniqueIncludes;
|
|
|
|
cmListFileBacktrace lfbt;
|
|
|
|
|
|
|
|
cmGeneratorExpressionDAGChecker dagChecker(lfbt,
|
|
|
|
this->GetName(),
|
|
|
|
"INCLUDE_DIRECTORIES", 0, 0);
|
|
|
|
|
2012-12-18 19:16:14 +04:00
|
|
|
|
|
|
|
std::vector<std::string> debugProperties;
|
|
|
|
const char *debugProp =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_DEBUG_TARGET_PROPERTIES");
|
|
|
|
if (debugProp)
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(debugProp, debugProperties);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool debugIncludes = std::find(debugProperties.begin(),
|
|
|
|
debugProperties.end(),
|
|
|
|
"INCLUDE_DIRECTORIES")
|
|
|
|
!= debugProperties.end();
|
|
|
|
|
2012-11-20 01:47:30 +04:00
|
|
|
for (std::vector<cmTargetInternals::IncludeDirectoriesEntry*>::const_iterator
|
|
|
|
it = this->Internal->IncludeDirectoriesEntries.begin(),
|
|
|
|
end = this->Internal->IncludeDirectoriesEntries.end();
|
|
|
|
it != end; ++it)
|
|
|
|
{
|
|
|
|
std::vector<std::string> entryIncludes;
|
|
|
|
cmSystemTools::ExpandListArgument((*it)->ge->Evaluate(this->Makefile,
|
|
|
|
config,
|
|
|
|
false,
|
|
|
|
this,
|
|
|
|
&dagChecker),
|
|
|
|
entryIncludes);
|
2012-12-18 19:16:14 +04:00
|
|
|
std::string usedIncludes;
|
2012-11-20 01:47:30 +04:00
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
li = entryIncludes.begin(); li != entryIncludes.end(); ++li)
|
|
|
|
{
|
|
|
|
std::string inc = *li;
|
|
|
|
if (!cmSystemTools::IsOff(inc.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(inc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(uniqueIncludes.insert(inc).second)
|
|
|
|
{
|
|
|
|
includes.push_back(*li);
|
2012-12-18 19:16:14 +04:00
|
|
|
if (debugIncludes)
|
|
|
|
{
|
|
|
|
usedIncludes += " * " + *li + "\n";
|
|
|
|
}
|
2012-11-20 01:47:30 +04:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 19:16:14 +04:00
|
|
|
if (!usedIncludes.empty())
|
|
|
|
{
|
|
|
|
this->Makefile->GetCMakeInstance()->IssueMessage(cmake::LOG,
|
|
|
|
"Used includes:\n" + usedIncludes,
|
|
|
|
(*it)->ge->GetBacktrace());
|
|
|
|
}
|
2012-11-20 01:47:30 +04:00
|
|
|
}
|
|
|
|
return includes;
|
|
|
|
}
|
|
|
|
|
2009-10-05 17:06:44 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::MaybeInvalidatePropertyCache(const char* prop)
|
|
|
|
{
|
2012-09-23 17:02:29 +04:00
|
|
|
// Wipe out maps caching information affected by this property.
|
2008-01-28 16:38:36 +03:00
|
|
|
if(this->IsImported() && strncmp(prop, "IMPORTED", 8) == 0)
|
|
|
|
{
|
2009-07-08 16:31:30 +04:00
|
|
|
this->Internal->ImportInfoMap.clear();
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
2009-10-05 17:06:59 +04:00
|
|
|
if(!this->IsImported() && strncmp(prop, "LINK_INTERFACE_", 15) == 0)
|
|
|
|
{
|
|
|
|
this->ClearLinkMaps();
|
|
|
|
}
|
2002-12-21 01:15:45 +03:00
|
|
|
}
|
|
|
|
|
2008-08-19 19:43:51 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static void cmTargetCheckLINK_INTERFACE_LIBRARIES(
|
|
|
|
const char* prop, const char* value, cmMakefile* context, bool imported
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Look for link-type keywords in the value.
|
|
|
|
static cmsys::RegularExpression
|
|
|
|
keys("(^|;)(debug|optimized|general)(;|$)");
|
|
|
|
if(!keys.find(value))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Support imported and non-imported versions of the property.
|
|
|
|
const char* base = (imported?
|
|
|
|
"IMPORTED_LINK_INTERFACE_LIBRARIES" :
|
|
|
|
"LINK_INTERFACE_LIBRARIES");
|
|
|
|
|
|
|
|
// Report an error.
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Property " << prop << " may not contain link-type keyword \""
|
|
|
|
<< keys.match(2) << "\". "
|
|
|
|
<< "The " << base << " property has a per-configuration "
|
|
|
|
<< "version called " << base << "_<CONFIG> which may be "
|
|
|
|
<< "used to specify per-configuration rules.";
|
|
|
|
if(!imported)
|
|
|
|
{
|
|
|
|
e << " "
|
|
|
|
<< "Alternatively, an IMPORTED library may be created, configured "
|
|
|
|
<< "with a per-configuration location, and then named in the "
|
|
|
|
<< "property value. "
|
|
|
|
<< "See the add_library command's IMPORTED mode for details."
|
|
|
|
<< "\n"
|
|
|
|
<< "If you have a list of libraries that already contains the "
|
|
|
|
<< "keyword, use the target_link_libraries command with its "
|
|
|
|
<< "LINK_INTERFACE_LIBRARIES mode to set the property. "
|
|
|
|
<< "The command automatically recognizes link-type keywords and sets "
|
|
|
|
<< "the LINK_INTERFACE_LIBRARIES and LINK_INTERFACE_LIBRARIES_DEBUG "
|
|
|
|
<< "properties accordingly.";
|
|
|
|
}
|
|
|
|
context->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::CheckProperty(const char* prop, cmMakefile* context)
|
|
|
|
{
|
|
|
|
// Certain properties need checking.
|
|
|
|
if(strncmp(prop, "LINK_INTERFACE_LIBRARIES", 24) == 0)
|
|
|
|
{
|
|
|
|
if(const char* value = this->GetProperty(prop))
|
|
|
|
{
|
|
|
|
cmTargetCheckLINK_INTERFACE_LIBRARIES(prop, value, context, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(strncmp(prop, "IMPORTED_LINK_INTERFACE_LIBRARIES", 33) == 0)
|
|
|
|
{
|
|
|
|
if(const char* value = this->GetProperty(prop))
|
|
|
|
{
|
|
|
|
cmTargetCheckLINK_INTERFACE_LIBRARIES(prop, value, context, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2007-05-22 18:24:59 +04:00
|
|
|
void cmTarget::MarkAsImported()
|
|
|
|
{
|
|
|
|
this->IsImportedTarget = true;
|
|
|
|
}
|
|
|
|
|
2012-07-16 21:42:56 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::HaveWellDefinedOutputFiles()
|
|
|
|
{
|
|
|
|
return
|
|
|
|
this->GetType() == cmTarget::STATIC_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::EXECUTABLE;
|
|
|
|
}
|
|
|
|
|
2009-07-03 18:33:59 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTarget::OutputInfo const* cmTarget::GetOutputInfo(const char* config)
|
|
|
|
{
|
|
|
|
// There is no output information for imported targets.
|
|
|
|
if(this->IsImported())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only libraries and executables have well-defined output files.
|
2012-07-16 21:42:56 +04:00
|
|
|
if(!this->HaveWellDefinedOutputFiles())
|
2009-07-03 18:33:59 +04:00
|
|
|
{
|
|
|
|
std::string msg = "cmTarget::GetOutputInfo called for ";
|
|
|
|
msg += this->GetName();
|
|
|
|
msg += " which has type ";
|
2011-03-20 19:57:42 +03:00
|
|
|
msg += cmTarget::GetTargetTypeName(this->GetType());
|
2009-07-03 18:33:59 +04:00
|
|
|
this->GetMakefile()->IssueMessage(cmake::INTERNAL_ERROR, msg);
|
2009-07-10 17:12:39 +04:00
|
|
|
abort();
|
2009-07-03 18:33:59 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup/compute/cache the output information for this configuration.
|
|
|
|
std::string config_upper;
|
|
|
|
if(config && *config)
|
|
|
|
{
|
|
|
|
config_upper = cmSystemTools::UpperCase(config);
|
|
|
|
}
|
2009-07-08 16:31:30 +04:00
|
|
|
typedef cmTargetInternals::OutputInfoMapType OutputInfoMapType;
|
2009-07-03 18:33:59 +04:00
|
|
|
OutputInfoMapType::const_iterator i =
|
2009-07-08 16:31:30 +04:00
|
|
|
this->Internal->OutputInfoMap.find(config_upper);
|
|
|
|
if(i == this->Internal->OutputInfoMap.end())
|
2009-07-03 18:33:59 +04:00
|
|
|
{
|
|
|
|
OutputInfo info;
|
|
|
|
this->ComputeOutputDir(config, false, info.OutDir);
|
|
|
|
this->ComputeOutputDir(config, true, info.ImpDir);
|
2012-11-02 20:49:44 +04:00
|
|
|
if(!this->ComputePDBOutputDir(config, info.PdbDir))
|
|
|
|
{
|
|
|
|
info.PdbDir = info.OutDir;
|
|
|
|
}
|
2009-07-03 18:33:59 +04:00
|
|
|
OutputInfoMapType::value_type entry(config_upper, info);
|
2009-07-08 16:31:30 +04:00
|
|
|
i = this->Internal->OutputInfoMap.insert(entry).first;
|
2009-07-03 18:33:59 +04:00
|
|
|
}
|
|
|
|
return &i->second;
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2008-04-08 08:06:47 +04:00
|
|
|
std::string cmTarget::GetDirectory(const char* config, bool implib)
|
2007-05-22 18:24:59 +04:00
|
|
|
{
|
|
|
|
if (this->IsImported())
|
|
|
|
{
|
2008-04-08 08:06:47 +04:00
|
|
|
// Return the directory from which the target is imported.
|
|
|
|
return
|
|
|
|
cmSystemTools::GetFilenamePath(
|
2008-01-28 16:38:36 +03:00
|
|
|
this->ImportedGetFullPath(config, implib));
|
2007-03-08 23:33:19 +03:00
|
|
|
}
|
2009-07-03 18:33:59 +04:00
|
|
|
else if(OutputInfo const* info = this->GetOutputInfo(config))
|
2007-03-08 23:33:19 +03:00
|
|
|
{
|
2008-04-08 08:06:47 +04:00
|
|
|
// Return the directory in which the target will be built.
|
2009-07-03 18:33:59 +04:00
|
|
|
return implib? info->ImpDir : info->OutDir;
|
2006-02-24 21:13:14 +03:00
|
|
|
}
|
2009-07-03 18:33:59 +04:00
|
|
|
return "";
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
|
|
|
|
2012-09-25 05:30:42 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetPDBDirectory(const char* config)
|
|
|
|
{
|
|
|
|
if(OutputInfo const* info = this->GetOutputInfo(config))
|
|
|
|
{
|
|
|
|
// Return the directory in which the target will be built.
|
|
|
|
return info->PdbDir;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2006-01-14 02:18:32 +03:00
|
|
|
const char* cmTarget::GetLocation(const char* config)
|
2007-05-22 18:24:59 +04:00
|
|
|
{
|
|
|
|
if (this->IsImported())
|
|
|
|
{
|
|
|
|
return this->ImportedGetLocation(config);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return this->NormalGetLocation(config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2007-05-22 18:24:59 +04:00
|
|
|
const char* cmTarget::ImportedGetLocation(const char* config)
|
|
|
|
{
|
2008-01-28 16:38:36 +03:00
|
|
|
this->Location = this->ImportedGetFullPath(config, false);
|
|
|
|
return this->Location.c_str();
|
2007-05-22 18:24:59 +04:00
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2007-05-22 18:24:59 +04:00
|
|
|
const char* cmTarget::NormalGetLocation(const char* config)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2008-04-08 08:06:47 +04:00
|
|
|
// Handle the configuration-specific case first.
|
|
|
|
if(config)
|
|
|
|
{
|
|
|
|
this->Location = this->GetFullPath(config, false);
|
|
|
|
return this->Location.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now handle the deprecated build-time configuration location.
|
|
|
|
this->Location = this->GetDirectory();
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->Location.empty())
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Location += "/";
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
2008-04-08 08:06:47 +04:00
|
|
|
const char* cfgid = this->Makefile->GetDefinition("CMAKE_CFG_INTDIR");
|
|
|
|
if(cfgid && strcmp(cfgid, ".") != 0)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2008-04-08 08:06:47 +04:00
|
|
|
this->Location += cfgid;
|
|
|
|
this->Location += "/";
|
|
|
|
}
|
2012-07-16 21:42:56 +04:00
|
|
|
this->Location = this->BuildMacContentDirectory(this->Location, config);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Location += this->GetFullName(config, false);
|
|
|
|
return this->Location.c_str();
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
|
|
|
|
2006-10-17 02:17:14 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::GetTargetVersion(int& major, int& minor)
|
2008-07-09 18:09:00 +04:00
|
|
|
{
|
|
|
|
int patch;
|
|
|
|
this->GetTargetVersion(false, major, minor, patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::GetTargetVersion(bool soversion,
|
|
|
|
int& major, int& minor, int& patch)
|
2006-10-17 02:17:14 +04:00
|
|
|
{
|
|
|
|
// Set the default values.
|
|
|
|
major = 0;
|
|
|
|
minor = 0;
|
2008-07-09 18:09:00 +04:00
|
|
|
patch = 0;
|
2006-10-17 02:17:14 +04:00
|
|
|
|
2008-07-09 18:09:00 +04:00
|
|
|
// Look for a VERSION or SOVERSION property.
|
|
|
|
const char* prop = soversion? "SOVERSION" : "VERSION";
|
|
|
|
if(const char* version = this->GetProperty(prop))
|
2006-10-17 02:17:14 +04:00
|
|
|
{
|
|
|
|
// Try to parse the version number and store the results that were
|
|
|
|
// successfully parsed.
|
|
|
|
int parsed_major;
|
|
|
|
int parsed_minor;
|
2008-07-09 18:09:00 +04:00
|
|
|
int parsed_patch;
|
|
|
|
switch(sscanf(version, "%d.%d.%d",
|
|
|
|
&parsed_major, &parsed_minor, &parsed_patch))
|
2006-10-17 02:17:14 +04:00
|
|
|
{
|
2008-07-09 18:09:00 +04:00
|
|
|
case 3: patch = parsed_patch; // no break!
|
2006-10-17 02:17:14 +04:00
|
|
|
case 2: minor = parsed_minor; // no break!
|
|
|
|
case 1: major = parsed_major; // no break!
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2009-10-02 21:52:01 +04:00
|
|
|
const char* cmTarget::GetFeature(const char* feature, const char* config)
|
|
|
|
{
|
|
|
|
if(config && *config)
|
|
|
|
{
|
|
|
|
std::string featureConfig = feature;
|
|
|
|
featureConfig += "_";
|
|
|
|
featureConfig += cmSystemTools::UpperCase(config);
|
|
|
|
if(const char* value = this->GetProperty(featureConfig.c_str()))
|
|
|
|
{
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(const char* value = this->GetProperty(feature))
|
|
|
|
{
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
return this->Makefile->GetFeature(feature, config);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2005-06-22 17:06:46 +04:00
|
|
|
const char *cmTarget::GetProperty(const char* prop)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
|
|
|
return this->GetProperty(prop, cmProperty::TARGET);
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2006-12-07 17:45:32 +03:00
|
|
|
const char *cmTarget::GetProperty(const char* prop,
|
|
|
|
cmProperty::ScopeType scope)
|
2005-06-22 17:06:46 +04:00
|
|
|
{
|
2007-03-09 23:14:27 +03:00
|
|
|
if(!prop)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
// Watch for special "computed" properties that are dependent on
|
|
|
|
// other properties or variables. Always recompute them.
|
|
|
|
if(this->GetType() == cmTarget::EXECUTABLE ||
|
|
|
|
this->GetType() == cmTarget::STATIC_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::SHARED_LIBRARY ||
|
2008-08-18 19:39:22 +04:00
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::UNKNOWN_LIBRARY)
|
2007-07-02 21:32:41 +04:00
|
|
|
{
|
2009-01-05 17:53:14 +03:00
|
|
|
if(strcmp(prop,"LOCATION") == 0)
|
2007-05-22 18:24:59 +04:00
|
|
|
{
|
2009-01-05 17:53:14 +03:00
|
|
|
// Set the LOCATION property of the target.
|
|
|
|
//
|
|
|
|
// For an imported target this is the location of an arbitrary
|
|
|
|
// available configuration.
|
|
|
|
//
|
|
|
|
// For a non-imported target this is deprecated because it
|
2007-07-02 21:32:41 +04:00
|
|
|
// cannot take into account the per-configuration name of the
|
|
|
|
// target because the configuration type may not be known at
|
2009-01-05 17:53:14 +03:00
|
|
|
// CMake time.
|
2007-07-02 21:32:41 +04:00
|
|
|
this->SetProperty("LOCATION", this->GetLocation(0));
|
|
|
|
}
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
// Support "LOCATION_<CONFIG>".
|
|
|
|
if(strncmp(prop, "LOCATION_", 9) == 0)
|
2007-07-02 21:32:41 +04:00
|
|
|
{
|
2008-01-28 16:38:36 +03:00
|
|
|
std::string configName = prop+9;
|
2007-07-02 21:32:41 +04:00
|
|
|
this->SetProperty(prop, this->GetLocation(configName.c_str()));
|
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
else
|
2007-07-02 21:32:41 +04:00
|
|
|
{
|
2008-01-28 16:38:36 +03:00
|
|
|
// Support "<CONFIG>_LOCATION" for compatiblity.
|
|
|
|
int len = static_cast<int>(strlen(prop));
|
|
|
|
if(len > 9 && strcmp(prop+len-9, "_LOCATION") == 0)
|
|
|
|
{
|
|
|
|
std::string configName(prop, len-9);
|
|
|
|
if(configName != "IMPORTED")
|
|
|
|
{
|
|
|
|
this->SetProperty(prop, this->GetLocation(configName.c_str()));
|
|
|
|
}
|
|
|
|
}
|
2007-05-22 18:24:59 +04:00
|
|
|
}
|
2007-07-02 21:32:41 +04:00
|
|
|
}
|
2012-11-20 01:47:30 +04:00
|
|
|
if(strcmp(prop,"INCLUDE_DIRECTORIES") == 0)
|
|
|
|
{
|
|
|
|
static std::string output;
|
|
|
|
output = "";
|
|
|
|
std::string sep;
|
|
|
|
typedef cmTargetInternals::IncludeDirectoriesEntry
|
|
|
|
IncludeDirectoriesEntry;
|
|
|
|
for (std::vector<IncludeDirectoriesEntry*>::const_iterator
|
|
|
|
it = this->Internal->IncludeDirectoriesEntries.begin(),
|
|
|
|
end = this->Internal->IncludeDirectoriesEntries.end();
|
|
|
|
it != end; ++it)
|
|
|
|
{
|
|
|
|
output += sep;
|
|
|
|
output += (*it)->ge->GetInput();
|
|
|
|
sep = ";";
|
|
|
|
}
|
|
|
|
return output.c_str();
|
|
|
|
}
|
2007-07-02 21:32:41 +04:00
|
|
|
|
2007-05-22 18:24:59 +04:00
|
|
|
if (strcmp(prop,"IMPORTED") == 0)
|
2007-02-17 00:12:17 +03:00
|
|
|
{
|
2007-05-22 18:24:59 +04:00
|
|
|
return this->IsImported()?"TRUE":"FALSE";
|
2007-02-17 00:12:17 +03:00
|
|
|
}
|
2007-02-19 21:20:27 +03:00
|
|
|
|
2007-12-17 18:12:22 +03:00
|
|
|
if(!strcmp(prop,"SOURCES"))
|
|
|
|
{
|
|
|
|
cmOStringStream ss;
|
|
|
|
const char* sep = "";
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator
|
|
|
|
i = this->SourceFiles.begin();
|
|
|
|
i != this->SourceFiles.end(); ++i)
|
|
|
|
{
|
|
|
|
// Separate from the previous list entries.
|
|
|
|
ss << sep;
|
|
|
|
sep = ";";
|
|
|
|
|
|
|
|
// Construct what is known about this source file location.
|
|
|
|
cmSourceFileLocation const& location = (*i)->GetLocation();
|
|
|
|
std::string sname = location.GetDirectory();
|
|
|
|
if(!sname.empty())
|
|
|
|
{
|
|
|
|
sname += "/";
|
|
|
|
}
|
|
|
|
sname += location.GetName();
|
|
|
|
|
|
|
|
// Append this list entry.
|
|
|
|
ss << sname;
|
|
|
|
}
|
|
|
|
this->SetProperty("SOURCES", ss.str().c_str());
|
|
|
|
}
|
|
|
|
|
2005-07-01 18:57:39 +04:00
|
|
|
// the type property returns what type the target is
|
|
|
|
if (!strcmp(prop,"TYPE"))
|
|
|
|
{
|
2011-03-20 19:57:42 +03:00
|
|
|
return cmTarget::GetTargetTypeName(this->GetType());
|
2005-07-01 18:57:39 +04:00
|
|
|
}
|
2006-12-07 17:45:32 +03:00
|
|
|
bool chain = false;
|
2007-07-02 21:32:41 +04:00
|
|
|
const char *retVal =
|
2006-12-07 17:45:32 +03:00
|
|
|
this->Properties.GetPropertyValue(prop, scope, chain);
|
|
|
|
if (chain)
|
2002-12-21 01:15:45 +03:00
|
|
|
{
|
2006-12-07 17:45:32 +03:00
|
|
|
return this->Makefile->GetProperty(prop,scope);
|
2002-12-21 01:15:45 +03:00
|
|
|
}
|
2007-07-02 21:32:41 +04:00
|
|
|
return retVal;
|
2002-12-21 01:15:45 +03:00
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2005-06-22 17:06:46 +04:00
|
|
|
bool cmTarget::GetPropertyAsBool(const char* prop)
|
2002-12-21 01:15:45 +03:00
|
|
|
{
|
2006-12-07 17:45:32 +03:00
|
|
|
return cmSystemTools::IsOn(this->GetProperty(prop));
|
2002-12-21 01:15:45 +03:00
|
|
|
}
|
2004-09-22 22:42:05 +04:00
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2009-07-10 21:53:28 +04:00
|
|
|
class cmTargetCollectLinkLanguages
|
2004-09-22 22:42:05 +04:00
|
|
|
{
|
2009-07-10 21:53:28 +04:00
|
|
|
public:
|
|
|
|
cmTargetCollectLinkLanguages(cmTarget* target, const char* config,
|
2013-01-04 16:31:01 +04:00
|
|
|
std::set<cmStdString>& languages,
|
|
|
|
cmTarget* head):
|
|
|
|
Config(config), Languages(languages), HeadTarget(head)
|
|
|
|
{ this->Visited.insert(target); }
|
|
|
|
|
2009-07-10 21:53:28 +04:00
|
|
|
void Visit(cmTarget* target)
|
2004-09-22 22:42:05 +04:00
|
|
|
{
|
2009-07-10 21:53:28 +04:00
|
|
|
if(!target || !this->Visited.insert(target).second)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmTarget::LinkInterface const* iface =
|
2013-01-04 16:31:01 +04:00
|
|
|
target->GetLinkInterface(this->Config, this->HeadTarget);
|
2009-07-10 21:53:28 +04:00
|
|
|
if(!iface) { return; }
|
|
|
|
|
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
li = iface->Languages.begin(); li != iface->Languages.end(); ++li)
|
|
|
|
{
|
|
|
|
this->Languages.insert(*li);
|
|
|
|
}
|
|
|
|
|
|
|
|
cmMakefile* mf = target->GetMakefile();
|
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
li = iface->Libraries.begin(); li != iface->Libraries.end(); ++li)
|
|
|
|
{
|
|
|
|
this->Visit(mf->FindTargetToUse(li->c_str()));
|
|
|
|
}
|
2004-09-22 22:42:05 +04:00
|
|
|
}
|
2009-07-10 21:53:28 +04:00
|
|
|
private:
|
|
|
|
const char* Config;
|
|
|
|
std::set<cmStdString>& Languages;
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTarget* HeadTarget;
|
2009-07-10 21:53:28 +04:00
|
|
|
std::set<cmTarget*> Visited;
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2013-01-04 16:31:01 +04:00
|
|
|
const char* cmTarget::GetLinkerLanguage(const char* config, cmTarget *head)
|
2009-07-10 21:53:28 +04:00
|
|
|
{
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTarget *headTarget = head ? head : this;
|
|
|
|
const char* lang = this->GetLinkClosure(config, headTarget)
|
|
|
|
->LinkerLanguage.c_str();
|
2009-07-10 21:53:28 +04:00
|
|
|
return *lang? lang : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTarget::LinkClosure const* cmTarget::GetLinkClosure(const char* config,
|
|
|
|
cmTarget *head)
|
2009-07-10 21:53:28 +04:00
|
|
|
{
|
2013-01-04 16:31:01 +04:00
|
|
|
TargetConfigPair key(head, cmSystemTools::UpperCase(config ? config : ""));
|
2009-07-10 21:53:28 +04:00
|
|
|
cmTargetInternals::LinkClosureMapType::iterator
|
|
|
|
i = this->Internal->LinkClosureMap.find(key);
|
|
|
|
if(i == this->Internal->LinkClosureMap.end())
|
2004-09-22 22:42:05 +04:00
|
|
|
{
|
2009-07-10 21:53:28 +04:00
|
|
|
LinkClosure lc;
|
2013-01-04 16:31:01 +04:00
|
|
|
this->ComputeLinkClosure(config, lc, head);
|
2009-07-10 21:53:28 +04:00
|
|
|
cmTargetInternals::LinkClosureMapType::value_type entry(key, lc);
|
|
|
|
i = this->Internal->LinkClosureMap.insert(entry).first;
|
|
|
|
}
|
|
|
|
return &i->second;
|
|
|
|
}
|
2007-07-12 16:37:10 +04:00
|
|
|
|
2009-07-30 18:59:25 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
class cmTargetSelectLinker
|
|
|
|
{
|
|
|
|
int Preference;
|
|
|
|
cmTarget* Target;
|
|
|
|
cmMakefile* Makefile;
|
|
|
|
cmGlobalGenerator* GG;
|
|
|
|
std::set<cmStdString> Preferred;
|
|
|
|
public:
|
|
|
|
cmTargetSelectLinker(cmTarget* target): Preference(0), Target(target)
|
|
|
|
{
|
|
|
|
this->Makefile = this->Target->GetMakefile();
|
|
|
|
this->GG = this->Makefile->GetLocalGenerator()->GetGlobalGenerator();
|
|
|
|
}
|
|
|
|
void Consider(const char* lang)
|
|
|
|
{
|
|
|
|
int preference = this->GG->GetLinkerPreference(lang);
|
|
|
|
if(preference > this->Preference)
|
|
|
|
{
|
|
|
|
this->Preference = preference;
|
|
|
|
this->Preferred.clear();
|
|
|
|
}
|
|
|
|
if(preference == this->Preference)
|
|
|
|
{
|
|
|
|
this->Preferred.insert(lang);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::string Choose()
|
|
|
|
{
|
|
|
|
if(this->Preferred.empty())
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
else if(this->Preferred.size() > 1)
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Target " << this->Target->GetName()
|
|
|
|
<< " contains multiple languages with the highest linker preference"
|
|
|
|
<< " (" << this->Preference << "):\n";
|
|
|
|
for(std::set<cmStdString>::const_iterator
|
|
|
|
li = this->Preferred.begin(); li != this->Preferred.end(); ++li)
|
|
|
|
{
|
|
|
|
e << " " << *li << "\n";
|
|
|
|
}
|
|
|
|
e << "Set the LINKER_LANGUAGE property for this target.";
|
|
|
|
cmake* cm = this->Makefile->GetCMakeInstance();
|
|
|
|
cm->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
|
|
|
this->Target->GetBacktrace());
|
|
|
|
}
|
|
|
|
return *this->Preferred.begin();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-10 21:53:28 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2013-01-04 16:31:01 +04:00
|
|
|
void cmTarget::ComputeLinkClosure(const char* config, LinkClosure& lc,
|
|
|
|
cmTarget *head)
|
2009-07-10 21:53:28 +04:00
|
|
|
{
|
|
|
|
// Get languages built in this target.
|
|
|
|
std::set<cmStdString> languages;
|
2013-01-04 16:31:01 +04:00
|
|
|
LinkImplementation const* impl = this->GetLinkImplementation(config, head);
|
2009-07-10 21:53:28 +04:00
|
|
|
for(std::vector<std::string>::const_iterator li = impl->Languages.begin();
|
|
|
|
li != impl->Languages.end(); ++li)
|
|
|
|
{
|
|
|
|
languages.insert(*li);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add interface languages from linked targets.
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTargetCollectLinkLanguages cll(this, config, languages, head);
|
2009-07-10 21:53:28 +04:00
|
|
|
for(std::vector<std::string>::const_iterator li = impl->Libraries.begin();
|
|
|
|
li != impl->Libraries.end(); ++li)
|
|
|
|
{
|
|
|
|
cll.Visit(this->Makefile->FindTargetToUse(li->c_str()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the transitive closure of languages.
|
|
|
|
for(std::set<cmStdString>::const_iterator li = languages.begin();
|
|
|
|
li != languages.end(); ++li)
|
|
|
|
{
|
|
|
|
lc.Languages.push_back(*li);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Choose the language whose linker should be used.
|
|
|
|
if(this->GetProperty("HAS_CXX"))
|
|
|
|
{
|
|
|
|
lc.LinkerLanguage = "CXX";
|
|
|
|
}
|
|
|
|
else if(const char* linkerLang = this->GetProperty("LINKER_LANGUAGE"))
|
|
|
|
{
|
|
|
|
lc.LinkerLanguage = linkerLang;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Find the language with the highest preference value.
|
2009-07-30 18:59:25 +04:00
|
|
|
cmTargetSelectLinker tsl(this);
|
2009-07-30 18:59:37 +04:00
|
|
|
|
|
|
|
// First select from the languages compiled directly in this target.
|
|
|
|
for(std::vector<std::string>::const_iterator li = impl->Languages.begin();
|
|
|
|
li != impl->Languages.end(); ++li)
|
|
|
|
{
|
|
|
|
tsl.Consider(li->c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now consider languages that propagate from linked targets.
|
2007-07-12 16:37:10 +04:00
|
|
|
for(std::set<cmStdString>::const_iterator sit = languages.begin();
|
|
|
|
sit != languages.end(); ++sit)
|
2004-09-22 22:42:05 +04:00
|
|
|
{
|
2009-07-30 18:59:37 +04:00
|
|
|
std::string propagates = "CMAKE_"+*sit+"_LINKER_PREFERENCE_PROPAGATES";
|
|
|
|
if(this->Makefile->IsOn(propagates.c_str()))
|
|
|
|
{
|
|
|
|
tsl.Consider(sit->c_str());
|
|
|
|
}
|
2007-07-12 16:37:10 +04:00
|
|
|
}
|
2009-07-30 18:59:37 +04:00
|
|
|
|
2009-07-30 18:59:25 +04:00
|
|
|
lc.LinkerLanguage = tsl.Choose();
|
2004-09-22 22:42:05 +04:00
|
|
|
}
|
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2009-05-01 18:39:44 +04:00
|
|
|
const char* cmTarget::GetSuffixVariableInternal(bool implib)
|
2005-04-22 23:23:21 +04:00
|
|
|
{
|
2009-05-01 18:39:44 +04:00
|
|
|
switch(this->GetType())
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
return "CMAKE_STATIC_LIBRARY_SUFFIX";
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
2006-02-18 23:37:23 +03:00
|
|
|
return (implib
|
|
|
|
? "CMAKE_IMPORT_LIBRARY_SUFFIX"
|
|
|
|
: "CMAKE_SHARED_LIBRARY_SUFFIX");
|
2004-10-21 22:34:02 +04:00
|
|
|
case cmTarget::MODULE_LIBRARY:
|
2007-03-19 17:00:36 +03:00
|
|
|
return (implib
|
|
|
|
? "CMAKE_IMPORT_LIBRARY_SUFFIX"
|
|
|
|
: "CMAKE_SHARED_MODULE_SUFFIX");
|
2004-10-21 22:34:02 +04:00
|
|
|
case cmTarget::EXECUTABLE:
|
2007-03-19 17:00:36 +03:00
|
|
|
return (implib
|
|
|
|
? "CMAKE_IMPORT_LIBRARY_SUFFIX"
|
|
|
|
: "CMAKE_EXECUTABLE_SUFFIX");
|
2008-08-18 19:26:51 +04:00
|
|
|
default:
|
2004-10-21 22:34:02 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2009-05-01 18:39:44 +04:00
|
|
|
const char* cmTarget::GetPrefixVariableInternal(bool implib)
|
2005-04-22 23:23:21 +04:00
|
|
|
{
|
2009-05-01 18:39:44 +04:00
|
|
|
switch(this->GetType())
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
return "CMAKE_STATIC_LIBRARY_PREFIX";
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
2006-02-18 23:37:23 +03:00
|
|
|
return (implib
|
|
|
|
? "CMAKE_IMPORT_LIBRARY_PREFIX"
|
|
|
|
: "CMAKE_SHARED_LIBRARY_PREFIX");
|
2004-10-21 22:34:02 +04:00
|
|
|
case cmTarget::MODULE_LIBRARY:
|
2007-03-19 17:00:36 +03:00
|
|
|
return (implib
|
|
|
|
? "CMAKE_IMPORT_LIBRARY_PREFIX"
|
|
|
|
: "CMAKE_SHARED_MODULE_PREFIX");
|
2004-10-21 22:34:02 +04:00
|
|
|
case cmTarget::EXECUTABLE:
|
2007-03-19 17:00:36 +03:00
|
|
|
return (implib? "CMAKE_IMPORT_LIBRARY_PREFIX" : "");
|
2008-08-18 19:26:51 +04:00
|
|
|
default:
|
2004-10-21 22:34:02 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
2005-04-22 23:23:21 +04:00
|
|
|
|
2007-02-02 00:54:49 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetPDBName(const char* config)
|
|
|
|
{
|
|
|
|
std::string prefix;
|
|
|
|
std::string base;
|
|
|
|
std::string suffix;
|
2009-05-01 18:39:44 +04:00
|
|
|
this->GetFullNameInternal(config, false, prefix, base, suffix);
|
2012-09-25 05:30:42 +04:00
|
|
|
|
|
|
|
std::vector<std::string> props;
|
|
|
|
std::string configUpper =
|
|
|
|
cmSystemTools::UpperCase(config? config : "");
|
|
|
|
if(!configUpper.empty())
|
|
|
|
{
|
|
|
|
// PDB_NAME_<CONFIG>
|
|
|
|
props.push_back("PDB_NAME_" + configUpper);
|
|
|
|
}
|
|
|
|
|
|
|
|
// PDB_NAME
|
|
|
|
props.push_back("PDB_NAME");
|
|
|
|
|
|
|
|
for(std::vector<std::string>::const_iterator i = props.begin();
|
|
|
|
i != props.end(); ++i)
|
|
|
|
{
|
|
|
|
if(const char* outName = this->GetProperty(i->c_str()))
|
|
|
|
{
|
|
|
|
base = outName;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-02-02 00:54:49 +03:00
|
|
|
return prefix+base+".pdb";
|
|
|
|
}
|
|
|
|
|
2012-04-22 17:42:55 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::HasSOName(const char* config)
|
|
|
|
{
|
|
|
|
// soname is supported only for shared libraries and modules,
|
|
|
|
// and then only when the platform supports an soname flag.
|
|
|
|
return ((this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY) &&
|
|
|
|
!this->GetPropertyAsBool("NO_SONAME") &&
|
2013-01-04 16:31:01 +04:00
|
|
|
this->Makefile->GetSONameFlag(this->GetLinkerLanguage(config,
|
|
|
|
this)));
|
2012-04-22 17:42:55 +04:00
|
|
|
}
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetSOName(const char* config)
|
|
|
|
{
|
|
|
|
if(this->IsImported())
|
|
|
|
{
|
|
|
|
// Lookup the imported soname.
|
2013-01-04 16:31:01 +04:00
|
|
|
if(cmTarget::ImportInfo const* info = this->GetImportInfo(config, this))
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2008-02-21 19:41:11 +03:00
|
|
|
if(info->NoSOName)
|
|
|
|
{
|
|
|
|
// The imported library has no builtin soname so the name
|
|
|
|
// searched at runtime will be just the filename.
|
|
|
|
return cmSystemTools::GetFilenameName(info->Location);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Use the soname given if any.
|
|
|
|
return info->SOName;
|
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Compute the soname that will be built.
|
|
|
|
std::string name;
|
|
|
|
std::string soName;
|
|
|
|
std::string realName;
|
|
|
|
std::string impName;
|
|
|
|
std::string pdbName;
|
|
|
|
this->GetLibraryNames(name, soName, realName, impName, pdbName, config);
|
|
|
|
return soName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-21 19:41:11 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::IsImportedSharedLibWithoutSOName(const char* config)
|
|
|
|
{
|
|
|
|
if(this->IsImported() && this->GetType() == cmTarget::SHARED_LIBRARY)
|
|
|
|
{
|
2013-01-04 16:31:01 +04:00
|
|
|
if(cmTarget::ImportInfo const* info = this->GetImportInfo(config, this))
|
2008-02-21 19:41:11 +03:00
|
|
|
{
|
|
|
|
return info->NoSOName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-02-06 21:34:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::NormalGetRealName(const char* config)
|
|
|
|
{
|
|
|
|
// This should not be called for imported targets.
|
|
|
|
// TODO: Split cmTarget into a class hierarchy to get compile-time
|
|
|
|
// enforcement of the limited imported target API.
|
|
|
|
if(this->IsImported())
|
|
|
|
{
|
2008-03-13 04:06:32 +03:00
|
|
|
std::string msg = "NormalGetRealName called on imported target: ";
|
|
|
|
msg += this->GetName();
|
|
|
|
this->GetMakefile()->
|
|
|
|
IssueMessage(cmake::INTERNAL_ERROR,
|
|
|
|
msg.c_str());
|
2008-02-06 21:34:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if(this->GetType() == cmTarget::EXECUTABLE)
|
|
|
|
{
|
|
|
|
// Compute the real name that will be built.
|
|
|
|
std::string name;
|
|
|
|
std::string realName;
|
|
|
|
std::string impName;
|
|
|
|
std::string pdbName;
|
|
|
|
this->GetExecutableNames(name, realName, impName, pdbName, config);
|
|
|
|
return realName;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Compute the real name that will be built.
|
|
|
|
std::string name;
|
|
|
|
std::string soName;
|
|
|
|
std::string realName;
|
|
|
|
std::string impName;
|
|
|
|
std::string pdbName;
|
|
|
|
this->GetLibraryNames(name, soName, realName, impName, pdbName, config);
|
|
|
|
return realName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2006-02-18 23:37:23 +03:00
|
|
|
std::string cmTarget::GetFullName(const char* config, bool implib)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2008-01-28 16:38:36 +03:00
|
|
|
if(this->IsImported())
|
|
|
|
{
|
|
|
|
return this->GetFullNameImported(config, implib);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-05-01 18:39:44 +04:00
|
|
|
return this->GetFullNameInternal(config, implib);
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetFullNameImported(const char* config, bool implib)
|
|
|
|
{
|
|
|
|
return cmSystemTools::GetFilenameName(
|
|
|
|
this->ImportedGetFullPath(config, implib));
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2008-01-28 16:38:36 +03:00
|
|
|
void cmTarget::GetFullNameComponents(std::string& prefix, std::string& base,
|
|
|
|
std::string& suffix, const char* config,
|
|
|
|
bool implib)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2009-05-01 18:39:44 +04:00
|
|
|
this->GetFullNameInternal(config, implib, prefix, base, suffix);
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2008-02-06 21:34:44 +03:00
|
|
|
std::string cmTarget::GetFullPath(const char* config, bool implib,
|
|
|
|
bool realname)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
if(this->IsImported())
|
|
|
|
{
|
|
|
|
return this->ImportedGetFullPath(config, implib);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-02-06 21:34:44 +03:00
|
|
|
return this->NormalGetFullPath(config, implib, realname);
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2008-02-06 21:34:44 +03:00
|
|
|
std::string cmTarget::NormalGetFullPath(const char* config, bool implib,
|
|
|
|
bool realname)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2012-07-16 21:42:56 +04:00
|
|
|
std::string fpath = this->GetMacContentDirectory(config, implib);
|
2008-04-08 08:06:47 +04:00
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
// Add the full name of the target.
|
2008-02-06 22:19:03 +03:00
|
|
|
if(implib)
|
|
|
|
{
|
|
|
|
fpath += this->GetFullName(config, true);
|
|
|
|
}
|
|
|
|
else if(realname)
|
2008-02-06 21:34:44 +03:00
|
|
|
{
|
|
|
|
fpath += this->NormalGetRealName(config);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-02-06 22:19:03 +03:00
|
|
|
fpath += this->GetFullName(config, false);
|
2008-02-06 21:34:44 +03:00
|
|
|
}
|
2006-01-14 02:18:32 +03:00
|
|
|
return fpath;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2008-01-28 16:38:36 +03:00
|
|
|
std::string cmTarget::ImportedGetFullPath(const char* config, bool implib)
|
|
|
|
{
|
2009-04-09 00:29:04 +04:00
|
|
|
std::string result;
|
2013-01-04 16:31:01 +04:00
|
|
|
if(cmTarget::ImportInfo const* info = this->GetImportInfo(config, this))
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2009-04-09 00:29:04 +04:00
|
|
|
result = implib? info->ImportLibrary : info->Location;
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
2009-04-09 00:29:04 +04:00
|
|
|
if(result.empty())
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2009-04-09 00:29:04 +04:00
|
|
|
result = this->GetName();
|
2008-01-28 16:38:36 +03:00
|
|
|
result += "-NOTFOUND";
|
|
|
|
}
|
2009-04-09 00:29:04 +04:00
|
|
|
return result;
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2009-05-01 18:39:44 +04:00
|
|
|
std::string cmTarget::GetFullNameInternal(const char* config, bool implib)
|
2005-04-22 23:23:21 +04:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string prefix;
|
|
|
|
std::string base;
|
|
|
|
std::string suffix;
|
2009-05-01 18:39:44 +04:00
|
|
|
this->GetFullNameInternal(config, implib, prefix, base, suffix);
|
2006-01-14 02:18:32 +03:00
|
|
|
return prefix+base+suffix;
|
2005-04-22 23:23:21 +04:00
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2009-05-01 18:39:44 +04:00
|
|
|
void cmTarget::GetFullNameInternal(const char* config,
|
2007-07-02 21:32:41 +04:00
|
|
|
bool implib,
|
|
|
|
std::string& outPrefix,
|
|
|
|
std::string& outBase,
|
|
|
|
std::string& outSuffix)
|
2005-04-22 23:23:21 +04:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
// Use just the target name for non-main target types.
|
2009-05-01 18:39:44 +04:00
|
|
|
if(this->GetType() != cmTarget::STATIC_LIBRARY &&
|
|
|
|
this->GetType() != cmTarget::SHARED_LIBRARY &&
|
|
|
|
this->GetType() != cmTarget::MODULE_LIBRARY &&
|
|
|
|
this->GetType() != cmTarget::EXECUTABLE)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
|
|
|
outPrefix = "";
|
|
|
|
outBase = this->GetName();
|
|
|
|
outSuffix = "";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-03 17:42:48 +04:00
|
|
|
// Return an empty name for the import library if this platform
|
|
|
|
// does not support import libraries.
|
|
|
|
if(implib &&
|
|
|
|
!this->Makefile->GetDefinition("CMAKE_IMPORT_LIBRARY_SUFFIX"))
|
|
|
|
{
|
|
|
|
outPrefix = "";
|
|
|
|
outBase = "";
|
|
|
|
outSuffix = "";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-03-19 17:00:36 +03:00
|
|
|
// The implib option is only allowed for shared libraries, module
|
|
|
|
// libraries, and executables.
|
2009-05-01 18:39:44 +04:00
|
|
|
if(this->GetType() != cmTarget::SHARED_LIBRARY &&
|
|
|
|
this->GetType() != cmTarget::MODULE_LIBRARY &&
|
|
|
|
this->GetType() != cmTarget::EXECUTABLE)
|
2006-02-18 23:37:23 +03:00
|
|
|
{
|
|
|
|
implib = false;
|
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
// Compute the full name for main target types.
|
2006-02-18 23:37:23 +03:00
|
|
|
const char* targetPrefix = (implib
|
|
|
|
? this->GetProperty("IMPORT_PREFIX")
|
|
|
|
: this->GetProperty("PREFIX"));
|
|
|
|
const char* targetSuffix = (implib
|
|
|
|
? this->GetProperty("IMPORT_SUFFIX")
|
|
|
|
: this->GetProperty("SUFFIX"));
|
2006-01-14 02:18:32 +03:00
|
|
|
const char* configPostfix = 0;
|
2006-03-02 06:45:13 +03:00
|
|
|
if(config && *config)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2006-03-02 06:45:13 +03:00
|
|
|
std::string configProp = cmSystemTools::UpperCase(config);
|
|
|
|
configProp += "_POSTFIX";
|
|
|
|
configPostfix = this->GetProperty(configProp.c_str());
|
2008-04-14 23:27:27 +04:00
|
|
|
// Mac application bundles and frameworks have no postfix.
|
|
|
|
if(configPostfix &&
|
|
|
|
(this->IsAppBundleOnApple() || this->IsFrameworkOnApple()))
|
|
|
|
{
|
|
|
|
configPostfix = 0;
|
|
|
|
}
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
2009-05-01 18:39:44 +04:00
|
|
|
const char* prefixVar = this->GetPrefixVariableInternal(implib);
|
|
|
|
const char* suffixVar = this->GetSuffixVariableInternal(implib);
|
2005-04-22 23:23:21 +04:00
|
|
|
|
2009-07-08 22:33:08 +04:00
|
|
|
// Check for language-specific default prefix and suffix.
|
2013-01-04 16:31:01 +04:00
|
|
|
if(const char* ll = this->GetLinkerLanguage(config, this))
|
2009-07-08 22:33:08 +04:00
|
|
|
{
|
|
|
|
if(!targetSuffix && suffixVar && *suffixVar)
|
|
|
|
{
|
|
|
|
std::string langSuff = suffixVar + std::string("_") + ll;
|
|
|
|
targetSuffix = this->Makefile->GetDefinition(langSuff.c_str());
|
|
|
|
}
|
|
|
|
if(!targetPrefix && prefixVar && *prefixVar)
|
|
|
|
{
|
|
|
|
std::string langPrefix = prefixVar + std::string("_") + ll;
|
|
|
|
targetPrefix = this->Makefile->GetDefinition(langPrefix.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-22 23:23:21 +04:00
|
|
|
// if there is no prefix on the target use the cmake definition
|
|
|
|
if(!targetPrefix && prefixVar)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
targetPrefix = this->Makefile->GetSafeDefinition(prefixVar);
|
2005-04-22 23:23:21 +04:00
|
|
|
}
|
|
|
|
// if there is no suffix on the target use the cmake definition
|
|
|
|
if(!targetSuffix && suffixVar)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
targetSuffix = this->Makefile->GetSafeDefinition(suffixVar);
|
2005-04-22 23:23:21 +04:00
|
|
|
}
|
2008-01-28 21:05:58 +03:00
|
|
|
|
2007-05-08 18:32:54 +04:00
|
|
|
// frameworks do not have a prefix or a suffix
|
2008-01-28 21:05:58 +03:00
|
|
|
if(this->IsFrameworkOnApple())
|
2007-05-08 18:32:54 +04:00
|
|
|
{
|
|
|
|
targetPrefix = 0;
|
|
|
|
targetSuffix = 0;
|
|
|
|
}
|
2005-08-18 00:11:18 +04:00
|
|
|
|
|
|
|
// Begin the final name with the prefix.
|
2006-01-14 02:18:32 +03:00
|
|
|
outPrefix = targetPrefix?targetPrefix:"";
|
2005-08-18 00:11:18 +04:00
|
|
|
|
2006-03-02 06:45:13 +03:00
|
|
|
// Append the target name or property-specified name.
|
2009-05-01 17:45:43 +04:00
|
|
|
outBase += this->GetOutputName(config, implib);
|
2005-08-18 00:11:18 +04:00
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
// Append the per-configuration postfix.
|
|
|
|
outBase += configPostfix?configPostfix:"";
|
2005-04-22 23:23:21 +04:00
|
|
|
|
2006-10-06 00:30:47 +04:00
|
|
|
// Name shared libraries with their version number on some platforms.
|
2010-01-13 21:00:29 +03:00
|
|
|
if(const char* soversion = this->GetProperty("SOVERSION"))
|
2006-10-06 00:30:47 +04:00
|
|
|
{
|
2009-05-01 18:39:44 +04:00
|
|
|
if(this->GetType() == cmTarget::SHARED_LIBRARY && !implib &&
|
2006-10-06 00:30:47 +04:00
|
|
|
this->Makefile->IsOn("CMAKE_SHARED_LIBRARY_NAME_WITH_VERSION"))
|
|
|
|
{
|
|
|
|
outBase += "-";
|
2010-01-13 21:00:29 +03:00
|
|
|
outBase += soversion;
|
2006-10-06 00:30:47 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
// Append the suffix.
|
|
|
|
outSuffix = targetSuffix?targetSuffix:"";
|
2005-04-22 23:23:21 +04:00
|
|
|
}
|
2005-04-23 00:11:00 +04:00
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2005-12-14 18:47:33 +03:00
|
|
|
void cmTarget::GetLibraryNames(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
|
|
|
const char* config)
|
2005-04-23 00:11:00 +04:00
|
|
|
{
|
2008-01-28 16:38:36 +03:00
|
|
|
// This should not be called for imported targets.
|
|
|
|
// TODO: Split cmTarget into a class hierarchy to get compile-time
|
|
|
|
// enforcement of the limited imported target API.
|
|
|
|
if(this->IsImported())
|
|
|
|
{
|
2009-05-01 18:39:44 +04:00
|
|
|
std::string msg = "GetLibraryNames called on imported target: ";
|
2008-03-13 04:06:32 +03:00
|
|
|
msg += this->GetName();
|
|
|
|
this->Makefile->IssueMessage(cmake::INTERNAL_ERROR,
|
|
|
|
msg.c_str());
|
|
|
|
return;
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
|
2005-04-23 00:11:00 +04:00
|
|
|
// Check for library version properties.
|
|
|
|
const char* version = this->GetProperty("VERSION");
|
|
|
|
const char* soversion = this->GetProperty("SOVERSION");
|
2012-04-22 17:42:55 +04:00
|
|
|
if(!this->HasSOName(config) ||
|
2008-04-08 08:06:47 +04:00
|
|
|
this->IsFrameworkOnApple())
|
2005-04-23 00:11:00 +04:00
|
|
|
{
|
|
|
|
// Versioning is supported only for shared libraries and modules,
|
|
|
|
// and then only when the platform supports an soname flag.
|
|
|
|
version = 0;
|
|
|
|
soversion = 0;
|
|
|
|
}
|
|
|
|
if(version && !soversion)
|
|
|
|
{
|
|
|
|
// The soversion must be set if the library version is set. Use
|
|
|
|
// the library version as the soversion.
|
|
|
|
soversion = version;
|
|
|
|
}
|
2011-12-02 01:21:25 +04:00
|
|
|
if(!version && soversion)
|
|
|
|
{
|
|
|
|
// Use the soversion as the library version.
|
|
|
|
version = soversion;
|
|
|
|
}
|
2005-04-23 00:11:00 +04:00
|
|
|
|
2006-06-05 21:45:43 +04:00
|
|
|
// Get the components of the library name.
|
|
|
|
std::string prefix;
|
|
|
|
std::string base;
|
|
|
|
std::string suffix;
|
2009-05-01 18:39:44 +04:00
|
|
|
this->GetFullNameInternal(config, false, prefix, base, suffix);
|
2006-06-05 21:45:43 +04:00
|
|
|
|
2005-04-23 00:11:00 +04:00
|
|
|
// The library name.
|
2006-06-05 21:45:43 +04:00
|
|
|
name = prefix+base+suffix;
|
2005-04-23 00:11:00 +04:00
|
|
|
|
|
|
|
// The library's soname.
|
2011-12-02 01:21:25 +04:00
|
|
|
this->ComputeVersionedName(soName, prefix, base, suffix,
|
|
|
|
name, soversion);
|
2005-04-23 00:11:00 +04:00
|
|
|
|
|
|
|
// The library's real name on disk.
|
2011-12-02 01:21:25 +04:00
|
|
|
this->ComputeVersionedName(realName, prefix, base, suffix,
|
|
|
|
name, version);
|
2006-02-18 23:37:23 +03:00
|
|
|
|
|
|
|
// The import library name.
|
2009-05-01 18:39:44 +04:00
|
|
|
if(this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY)
|
2006-02-18 23:37:23 +03:00
|
|
|
{
|
2009-05-01 18:39:44 +04:00
|
|
|
impName = this->GetFullNameInternal(config, true);
|
2006-02-18 23:37:23 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
impName = "";
|
|
|
|
}
|
2007-02-01 17:57:24 +03:00
|
|
|
|
|
|
|
// The program database file name.
|
2012-09-25 05:30:42 +04:00
|
|
|
pdbName = this->GetPDBName(config);
|
2005-04-23 00:11:00 +04:00
|
|
|
}
|
2005-08-18 00:11:18 +04:00
|
|
|
|
2011-12-02 01:21:25 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::ComputeVersionedName(std::string& vName,
|
|
|
|
std::string const& prefix,
|
|
|
|
std::string const& base,
|
|
|
|
std::string const& suffix,
|
|
|
|
std::string const& name,
|
|
|
|
const char* version)
|
|
|
|
{
|
|
|
|
vName = this->IsApple? (prefix+base) : name;
|
|
|
|
if(version)
|
|
|
|
{
|
|
|
|
vName += ".";
|
|
|
|
vName += version;
|
|
|
|
}
|
|
|
|
vName += this->IsApple? suffix : std::string();
|
|
|
|
}
|
|
|
|
|
2007-07-02 21:32:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2005-12-14 18:47:33 +03:00
|
|
|
void cmTarget::GetExecutableNames(std::string& name,
|
2006-01-14 02:18:32 +03: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
|
|
|
const char* config)
|
2005-08-18 00:11:18 +04:00
|
|
|
{
|
2008-01-28 16:38:36 +03:00
|
|
|
// This should not be called for imported targets.
|
|
|
|
// TODO: Split cmTarget into a class hierarchy to get compile-time
|
|
|
|
// enforcement of the limited imported target API.
|
|
|
|
if(this->IsImported())
|
|
|
|
{
|
2008-03-15 17:00:07 +03:00
|
|
|
std::string msg =
|
2009-05-01 18:39:44 +04:00
|
|
|
"GetExecutableNames called on imported target: ";
|
2008-03-13 04:06:32 +03:00
|
|
|
msg += this->GetName();
|
2008-03-15 17:00:07 +03:00
|
|
|
this->GetMakefile()->IssueMessage(cmake::INTERNAL_ERROR, msg.c_str());
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
|
2005-08-18 00:11:18 +04:00
|
|
|
// This versioning is supported only for executables and then only
|
|
|
|
// when the platform supports symbolic links.
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
const char* version = 0;
|
|
|
|
#else
|
|
|
|
// Check for executable version properties.
|
|
|
|
const char* version = this->GetProperty("VERSION");
|
2009-05-01 18:39:44 +04:00
|
|
|
if(this->GetType() != cmTarget::EXECUTABLE || this->Makefile->IsOn("XCODE"))
|
2005-08-18 00:11:18 +04:00
|
|
|
{
|
|
|
|
version = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-17 02:17:14 +04:00
|
|
|
// Get the components of the executable name.
|
|
|
|
std::string prefix;
|
|
|
|
std::string base;
|
|
|
|
std::string suffix;
|
2009-05-01 18:39:44 +04:00
|
|
|
this->GetFullNameInternal(config, false, prefix, base, suffix);
|
2006-10-17 02:17:14 +04:00
|
|
|
|
2005-08-18 00:11:18 +04:00
|
|
|
// The executable name.
|
2006-10-17 02:17:14 +04:00
|
|
|
name = prefix+base+suffix;
|
2005-08-18 00:11:18 +04:00
|
|
|
|
|
|
|
// The executable's real name on disk.
|
2006-10-17 02:17:14 +04:00
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
realName = prefix+base;
|
|
|
|
#else
|
2005-08-18 00:11:18 +04:00
|
|
|
realName = name;
|
2006-10-17 02:17:14 +04:00
|
|
|
#endif
|
2005-08-18 00:11:18 +04:00
|
|
|
if(version)
|
|
|
|
{
|
|
|
|
realName += "-";
|
|
|
|
realName += version;
|
|
|
|
}
|
2006-10-17 02:17:14 +04:00
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
realName += suffix;
|
|
|
|
#endif
|
2007-02-01 17:57:24 +03:00
|
|
|
|
2007-03-19 17:00:36 +03:00
|
|
|
// The import library name.
|
2009-05-01 18:39:44 +04:00
|
|
|
impName = this->GetFullNameInternal(config, true);
|
2007-03-19 17:00:36 +03:00
|
|
|
|
2007-02-01 17:57:24 +03:00
|
|
|
// The program database file name.
|
2012-09-25 05:30:42 +04:00
|
|
|
pdbName = this->GetPDBName(config);
|
2005-08-18 00:11:18 +04:00
|
|
|
}
|
2006-02-16 23:19:00 +03:00
|
|
|
|
2011-12-06 01:39:07 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::HasImplibGNUtoMS()
|
|
|
|
{
|
|
|
|
return this->HasImportLibrary() && this->GetPropertyAsBool("GNUtoMS");
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::GetImplibGNUtoMS(std::string const& gnuName,
|
|
|
|
std::string& out, const char* newExt)
|
|
|
|
{
|
|
|
|
if(this->HasImplibGNUtoMS() &&
|
|
|
|
gnuName.size() > 6 && gnuName.substr(gnuName.size()-6) == ".dll.a")
|
|
|
|
{
|
|
|
|
out = gnuName.substr(0, gnuName.size()-6);
|
|
|
|
out += newExt? newExt : ".lib";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-09-20 10:32:58 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::GenerateTargetManifest(const char* config)
|
|
|
|
{
|
|
|
|
cmMakefile* mf = this->Makefile;
|
|
|
|
cmLocalGenerator* lg = mf->GetLocalGenerator();
|
|
|
|
cmGlobalGenerator* gg = lg->GetGlobalGenerator();
|
|
|
|
|
|
|
|
// Get the names.
|
|
|
|
std::string name;
|
|
|
|
std::string soName;
|
|
|
|
std::string realName;
|
|
|
|
std::string impName;
|
|
|
|
std::string pdbName;
|
|
|
|
if(this->GetType() == cmTarget::EXECUTABLE)
|
|
|
|
{
|
|
|
|
this->GetExecutableNames(name, realName, impName, pdbName, config);
|
|
|
|
}
|
|
|
|
else if(this->GetType() == cmTarget::STATIC_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY)
|
|
|
|
{
|
|
|
|
this->GetLibraryNames(name, soName, realName, impName, pdbName, config);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the directory.
|
|
|
|
std::string dir = this->GetDirectory(config, false);
|
|
|
|
|
|
|
|
// Add each name.
|
|
|
|
std::string f;
|
|
|
|
if(!name.empty())
|
|
|
|
{
|
|
|
|
f = dir;
|
|
|
|
f += "/";
|
|
|
|
f += name;
|
|
|
|
gg->AddToManifest(config? config:"", f);
|
|
|
|
}
|
|
|
|
if(!soName.empty())
|
|
|
|
{
|
|
|
|
f = dir;
|
|
|
|
f += "/";
|
|
|
|
f += soName;
|
|
|
|
gg->AddToManifest(config? config:"", f);
|
|
|
|
}
|
|
|
|
if(!realName.empty())
|
|
|
|
{
|
|
|
|
f = dir;
|
|
|
|
f += "/";
|
|
|
|
f += realName;
|
|
|
|
gg->AddToManifest(config? config:"", f);
|
|
|
|
}
|
|
|
|
if(!pdbName.empty())
|
|
|
|
{
|
2012-09-25 05:30:42 +04:00
|
|
|
f = this->GetPDBDirectory(config);
|
2012-09-20 10:32:58 +04:00
|
|
|
f += "/";
|
|
|
|
f += pdbName;
|
|
|
|
gg->AddToManifest(config? config:"", f);
|
|
|
|
}
|
|
|
|
if(!impName.empty())
|
|
|
|
{
|
|
|
|
f = this->GetDirectory(config, true);
|
|
|
|
f += "/";
|
|
|
|
f += impName;
|
|
|
|
gg->AddToManifest(config? config:"", f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::SetPropertyDefault(const char* property,
|
|
|
|
const char* default_value)
|
|
|
|
{
|
|
|
|
// Compute the name of the variable holding the default value.
|
|
|
|
std::string var = "CMAKE_";
|
|
|
|
var += property;
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
if(const char* value = this->Makefile->GetDefinition(var.c_str()))
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
|
|
|
this->SetProperty(property, value);
|
|
|
|
}
|
|
|
|
else if(default_value)
|
|
|
|
{
|
|
|
|
this->SetProperty(property, default_value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::HaveBuildTreeRPATH()
|
|
|
|
{
|
|
|
|
return (!this->GetPropertyAsBool("SKIP_BUILD_RPATH") &&
|
2006-03-15 19:02:08 +03:00
|
|
|
!this->LinkLibraries.empty());
|
2006-02-16 23:19:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::HaveInstallTreeRPATH()
|
|
|
|
{
|
|
|
|
const char* install_rpath = this->GetProperty("INSTALL_RPATH");
|
2012-02-20 03:34:11 +04:00
|
|
|
return (install_rpath && *install_rpath) &&
|
|
|
|
!this->Makefile->IsOn("CMAKE_SKIP_INSTALL_RPATH");
|
2006-02-16 23:19:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2009-07-08 21:03:47 +04:00
|
|
|
bool cmTarget::NeedRelinkBeforeInstall(const char* config)
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
|
|
|
// Only executables and shared libraries can have an rpath and may
|
|
|
|
// need relinking.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->TargetTypeValue != cmTarget::EXECUTABLE &&
|
|
|
|
this->TargetTypeValue != cmTarget::SHARED_LIBRARY &&
|
|
|
|
this->TargetTypeValue != cmTarget::MODULE_LIBRARY)
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is no install location this target will not be installed
|
|
|
|
// and therefore does not need relinking.
|
2006-02-20 01:27:47 +03:00
|
|
|
if(!this->GetHaveInstallRule())
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If skipping all rpaths completely then no relinking is needed.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->IsOn("CMAKE_SKIP_RPATH"))
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If building with the install-tree rpath no relinking is needed.
|
|
|
|
if(this->GetPropertyAsBool("BUILD_WITH_INSTALL_RPATH"))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-01-29 23:07:33 +03:00
|
|
|
// If chrpath is going to be used no relinking is needed.
|
2009-07-08 21:03:47 +04:00
|
|
|
if(this->IsChrpathUsed(config))
|
2008-01-29 23:07:33 +03:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
// Check for rpath support on this platform.
|
2013-01-04 16:31:01 +04:00
|
|
|
if(const char* ll = this->GetLinkerLanguage(config, this))
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
|
|
|
std::string flagVar = "CMAKE_SHARED_LIBRARY_RUNTIME_";
|
|
|
|
flagVar += ll;
|
|
|
|
flagVar += "_FLAG";
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->Makefile->IsSet(flagVar.c_str()))
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
|
|
|
// There is no rpath support on this platform so nothing needs
|
|
|
|
// relinking.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No linker language is known. This error will be reported by
|
|
|
|
// other code.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If either a build or install tree rpath is set then the rpath
|
|
|
|
// will likely change between the build tree and install tree and
|
|
|
|
// this target must be relinked.
|
|
|
|
return this->HaveBuildTreeRPATH() || this->HaveInstallTreeRPATH();
|
|
|
|
}
|
2006-02-24 21:13:14 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2008-04-08 08:06:47 +04:00
|
|
|
std::string cmTarget::GetInstallNameDirForBuildTree(const char* config,
|
|
|
|
bool for_xcode)
|
2006-02-24 21:13:14 +03:00
|
|
|
{
|
|
|
|
// If building directly for installation then the build tree install_name
|
|
|
|
// is the same as the install tree.
|
|
|
|
if(this->GetPropertyAsBool("BUILD_WITH_INSTALL_RPATH"))
|
|
|
|
{
|
2008-04-08 08:06:47 +04:00
|
|
|
return GetInstallNameDirForInstallTree(config, for_xcode);
|
2006-02-24 21:13:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Use the build tree directory for the target.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->IsOn("CMAKE_PLATFORM_HAS_INSTALLNAME") &&
|
|
|
|
!this->Makefile->IsOn("CMAKE_SKIP_RPATH") &&
|
2006-02-24 21:13:14 +03:00
|
|
|
!this->GetPropertyAsBool("SKIP_BUILD_RPATH"))
|
|
|
|
{
|
|
|
|
std::string dir = this->GetDirectory(config);
|
|
|
|
dir += "/";
|
2008-04-08 08:06:47 +04:00
|
|
|
if(this->IsFrameworkOnApple() && !for_xcode)
|
|
|
|
{
|
2012-07-16 21:44:19 +04:00
|
|
|
dir += this->GetFrameworkDirectory(config);
|
2008-04-08 08:06:47 +04:00
|
|
|
}
|
2006-02-24 21:13:14 +03:00
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2008-04-08 08:06:47 +04:00
|
|
|
std::string cmTarget::GetInstallNameDirForInstallTree(const char* config,
|
|
|
|
bool for_xcode)
|
2006-02-24 21:13:14 +03:00
|
|
|
{
|
2009-12-15 01:46:29 +03:00
|
|
|
if(this->Makefile->IsOn("CMAKE_PLATFORM_HAS_INSTALLNAME"))
|
2006-02-24 21:13:14 +03:00
|
|
|
{
|
2009-12-15 01:46:29 +03:00
|
|
|
std::string dir;
|
|
|
|
|
2012-02-20 03:34:11 +04:00
|
|
|
if(!this->Makefile->IsOn("CMAKE_SKIP_RPATH") &&
|
|
|
|
!this->Makefile->IsOn("CMAKE_SKIP_INSTALL_RPATH"))
|
2009-12-15 01:46:29 +03:00
|
|
|
{
|
|
|
|
const char* install_name_dir = this->GetProperty("INSTALL_NAME_DIR");
|
|
|
|
if(install_name_dir && *install_name_dir)
|
|
|
|
{
|
|
|
|
dir = install_name_dir;
|
|
|
|
dir += "/";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-08 08:06:47 +04:00
|
|
|
if(this->IsFrameworkOnApple() && !for_xcode)
|
|
|
|
{
|
2012-07-16 21:44:19 +04:00
|
|
|
dir += this->GetFrameworkDirectory(config);
|
2008-04-08 08:06:47 +04:00
|
|
|
}
|
2009-12-15 01:46:29 +03:00
|
|
|
|
2006-02-24 21:13:14 +03:00
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
2007-03-08 22:57:28 +03:00
|
|
|
|
2009-05-01 17:45:19 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmTarget::GetOutputTargetType(bool implib)
|
|
|
|
{
|
|
|
|
switch(this->GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
if(this->DLLPlatform)
|
|
|
|
{
|
|
|
|
if(implib)
|
|
|
|
{
|
|
|
|
// A DLL import library is treated as an archive target.
|
|
|
|
return "ARCHIVE";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// A DLL shared library is treated as a runtime target.
|
|
|
|
return "RUNTIME";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// For non-DLL platforms shared libraries are treated as
|
|
|
|
// library targets.
|
|
|
|
return "LIBRARY";
|
|
|
|
}
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
// Static libraries are always treated as archive targets.
|
|
|
|
return "ARCHIVE";
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
if(implib)
|
|
|
|
{
|
|
|
|
// Module libraries are always treated as library targets.
|
|
|
|
return "ARCHIVE";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Module import libraries are treated as archive targets.
|
|
|
|
return "LIBRARY";
|
|
|
|
}
|
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
if(implib)
|
|
|
|
{
|
|
|
|
// Executable import libraries are treated as archive targets.
|
|
|
|
return "ARCHIVE";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Executables are always treated as runtime targets.
|
|
|
|
return "RUNTIME";
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2007-03-08 22:57:28 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2011-07-18 23:25:30 +04:00
|
|
|
bool cmTarget::ComputeOutputDir(const char* config,
|
2009-07-03 18:33:59 +04:00
|
|
|
bool implib, std::string& out)
|
2008-04-08 08:06:47 +04:00
|
|
|
{
|
2011-07-18 23:25:30 +04:00
|
|
|
bool usesDefaultOutputDir = false;
|
|
|
|
|
2008-04-08 08:06:47 +04:00
|
|
|
// Look for a target property defining the target output directory
|
|
|
|
// based on the target type.
|
2009-10-28 20:35:25 +03:00
|
|
|
std::string targetTypeName = this->GetOutputTargetType(implib);
|
2008-04-08 08:06:47 +04:00
|
|
|
const char* propertyName = 0;
|
2009-10-28 20:35:25 +03:00
|
|
|
std::string propertyNameStr = targetTypeName;
|
2009-05-01 17:45:19 +04:00
|
|
|
if(!propertyNameStr.empty())
|
2007-03-08 22:57:28 +03:00
|
|
|
{
|
2009-05-01 17:45:19 +04:00
|
|
|
propertyNameStr += "_OUTPUT_DIRECTORY";
|
|
|
|
propertyName = propertyNameStr.c_str();
|
2008-04-08 08:06:47 +04:00
|
|
|
}
|
2007-03-08 22:57:28 +03:00
|
|
|
|
2009-10-28 20:35:25 +03:00
|
|
|
// Check for a per-configuration output directory target property.
|
|
|
|
std::string configUpper = cmSystemTools::UpperCase(config? config : "");
|
|
|
|
const char* configProp = 0;
|
|
|
|
std::string configPropStr = targetTypeName;
|
|
|
|
if(!configPropStr.empty())
|
|
|
|
{
|
|
|
|
configPropStr += "_OUTPUT_DIRECTORY_";
|
|
|
|
configPropStr += configUpper;
|
|
|
|
configProp = configPropStr.c_str();
|
|
|
|
}
|
|
|
|
|
2008-04-08 08:06:47 +04:00
|
|
|
// Select an output directory.
|
2009-10-28 20:35:25 +03:00
|
|
|
if(const char* config_outdir = this->GetProperty(configProp))
|
|
|
|
{
|
|
|
|
// Use the user-specified per-configuration output directory.
|
|
|
|
out = config_outdir;
|
|
|
|
|
|
|
|
// Skip per-configuration subdirectory.
|
|
|
|
config = 0;
|
|
|
|
}
|
|
|
|
else if(const char* outdir = this->GetProperty(propertyName))
|
2008-04-08 08:06:47 +04:00
|
|
|
{
|
|
|
|
// Use the user-specified output directory.
|
|
|
|
out = outdir;
|
|
|
|
}
|
|
|
|
else if(this->GetType() == cmTarget::EXECUTABLE)
|
|
|
|
{
|
|
|
|
// Lookup the output path for executables.
|
|
|
|
out = this->Makefile->GetSafeDefinition("EXECUTABLE_OUTPUT_PATH");
|
|
|
|
}
|
|
|
|
else if(this->GetType() == cmTarget::STATIC_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY)
|
|
|
|
{
|
|
|
|
// Lookup the output path for libraries.
|
|
|
|
out = this->Makefile->GetSafeDefinition("LIBRARY_OUTPUT_PATH");
|
|
|
|
}
|
|
|
|
if(out.empty())
|
|
|
|
{
|
|
|
|
// Default to the current output directory.
|
2011-07-18 23:25:30 +04:00
|
|
|
usesDefaultOutputDir = true;
|
2008-04-08 08:06:47 +04:00
|
|
|
out = ".";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the output path to a full path in case it is
|
|
|
|
// specified as a relative path. Treat a relative path as
|
|
|
|
// relative to the current output directory for this makefile.
|
|
|
|
out = (cmSystemTools::CollapseFullPath
|
|
|
|
(out.c_str(), this->Makefile->GetStartOutputDirectory()));
|
2009-07-03 18:33:59 +04:00
|
|
|
|
|
|
|
// The generator may add the configuration's subdirectory.
|
|
|
|
if(config && *config)
|
|
|
|
{
|
2011-08-12 23:55:01 +04:00
|
|
|
const char *platforms = this->Makefile->GetDefinition(
|
|
|
|
"CMAKE_XCODE_EFFECTIVE_PLATFORMS");
|
|
|
|
std::string suffix =
|
|
|
|
usesDefaultOutputDir && platforms ? "$(EFFECTIVE_PLATFORM_NAME)" : "";
|
2009-07-03 18:33:59 +04:00
|
|
|
this->Makefile->GetLocalGenerator()->GetGlobalGenerator()->
|
2011-08-12 23:55:01 +04:00
|
|
|
AppendDirectoryForConfig("/", config, suffix.c_str(), out);
|
2009-07-03 18:33:59 +04:00
|
|
|
}
|
2011-07-18 23:25:30 +04:00
|
|
|
|
|
|
|
return usesDefaultOutputDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2012-11-02 20:49:44 +04:00
|
|
|
bool cmTarget::ComputePDBOutputDir(const char* config, std::string& out)
|
2012-09-25 05:30:42 +04:00
|
|
|
{
|
|
|
|
// Look for a target property defining the target output directory
|
|
|
|
// based on the target type.
|
|
|
|
std::string targetTypeName = "PDB";
|
|
|
|
const char* propertyName = 0;
|
|
|
|
std::string propertyNameStr = targetTypeName;
|
|
|
|
if(!propertyNameStr.empty())
|
|
|
|
{
|
|
|
|
propertyNameStr += "_OUTPUT_DIRECTORY";
|
|
|
|
propertyName = propertyNameStr.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for a per-configuration output directory target property.
|
|
|
|
std::string configUpper = cmSystemTools::UpperCase(config? config : "");
|
|
|
|
const char* configProp = 0;
|
|
|
|
std::string configPropStr = targetTypeName;
|
|
|
|
if(!configPropStr.empty())
|
|
|
|
{
|
|
|
|
configPropStr += "_OUTPUT_DIRECTORY_";
|
|
|
|
configPropStr += configUpper;
|
|
|
|
configProp = configPropStr.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select an output directory.
|
|
|
|
if(const char* config_outdir = this->GetProperty(configProp))
|
|
|
|
{
|
|
|
|
// Use the user-specified per-configuration output directory.
|
|
|
|
out = config_outdir;
|
|
|
|
|
|
|
|
// Skip per-configuration subdirectory.
|
|
|
|
config = 0;
|
|
|
|
}
|
|
|
|
else if(const char* outdir = this->GetProperty(propertyName))
|
|
|
|
{
|
|
|
|
// Use the user-specified output directory.
|
|
|
|
out = outdir;
|
|
|
|
}
|
|
|
|
if(out.empty())
|
|
|
|
{
|
2012-11-02 20:49:44 +04:00
|
|
|
return false;
|
2012-09-25 05:30:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the output path to a full path in case it is
|
|
|
|
// specified as a relative path. Treat a relative path as
|
|
|
|
// relative to the current output directory for this makefile.
|
|
|
|
out = (cmSystemTools::CollapseFullPath
|
|
|
|
(out.c_str(), this->Makefile->GetStartOutputDirectory()));
|
|
|
|
|
|
|
|
// The generator may add the configuration's subdirectory.
|
|
|
|
if(config && *config)
|
|
|
|
{
|
|
|
|
this->Makefile->GetLocalGenerator()->GetGlobalGenerator()->
|
|
|
|
AppendDirectoryForConfig("/", config, "", out);
|
|
|
|
}
|
2012-11-02 20:49:44 +04:00
|
|
|
return true;
|
2012-09-25 05:30:42 +04:00
|
|
|
}
|
|
|
|
|
2011-07-18 23:25:30 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmTarget::UsesDefaultOutputDir(const char* config, bool implib)
|
|
|
|
{
|
|
|
|
std::string dir;
|
|
|
|
return this->ComputeOutputDir(config, implib, dir);
|
2008-04-08 08:06:47 +04:00
|
|
|
}
|
|
|
|
|
2009-05-01 17:45:43 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetOutputName(const char* config, bool implib)
|
|
|
|
{
|
|
|
|
std::vector<std::string> props;
|
|
|
|
std::string type = this->GetOutputTargetType(implib);
|
|
|
|
std::string configUpper = cmSystemTools::UpperCase(config? config : "");
|
|
|
|
if(!type.empty() && !configUpper.empty())
|
|
|
|
{
|
|
|
|
// <ARCHIVE|LIBRARY|RUNTIME>_OUTPUT_NAME_<CONFIG>
|
|
|
|
props.push_back(type + "_OUTPUT_NAME_" + configUpper);
|
|
|
|
}
|
|
|
|
if(!type.empty())
|
|
|
|
{
|
|
|
|
// <ARCHIVE|LIBRARY|RUNTIME>_OUTPUT_NAME
|
|
|
|
props.push_back(type + "_OUTPUT_NAME");
|
|
|
|
}
|
|
|
|
if(!configUpper.empty())
|
|
|
|
{
|
|
|
|
// OUTPUT_NAME_<CONFIG>
|
|
|
|
props.push_back("OUTPUT_NAME_" + configUpper);
|
|
|
|
// <CONFIG>_OUTPUT_NAME
|
|
|
|
props.push_back(configUpper + "_OUTPUT_NAME");
|
|
|
|
}
|
|
|
|
// OUTPUT_NAME
|
|
|
|
props.push_back("OUTPUT_NAME");
|
|
|
|
|
|
|
|
for(std::vector<std::string>::const_iterator i = props.begin();
|
|
|
|
i != props.end(); ++i)
|
|
|
|
{
|
|
|
|
if(const char* outName = this->GetProperty(i->c_str()))
|
|
|
|
{
|
|
|
|
return outName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this->GetName();
|
|
|
|
}
|
|
|
|
|
2008-04-08 08:06:47 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetFrameworkVersion()
|
|
|
|
{
|
|
|
|
if(const char* fversion = this->GetProperty("FRAMEWORK_VERSION"))
|
|
|
|
{
|
|
|
|
return fversion;
|
|
|
|
}
|
|
|
|
else if(const char* tversion = this->GetProperty("VERSION"))
|
|
|
|
{
|
|
|
|
return tversion;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return "A";
|
|
|
|
}
|
2007-03-08 22:57:28 +03:00
|
|
|
}
|
2007-03-28 07:13:25 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmTarget::GetExportMacro()
|
|
|
|
{
|
|
|
|
// Define the symbol for targets that export symbols.
|
|
|
|
if(this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY ||
|
2008-01-28 16:38:36 +03:00
|
|
|
this->IsExecutableWithExports())
|
2007-03-28 07:13:25 +04:00
|
|
|
{
|
|
|
|
if(const char* custom_export_name = this->GetProperty("DEFINE_SYMBOL"))
|
|
|
|
{
|
|
|
|
this->ExportMacro = custom_export_name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string in = this->GetName();
|
|
|
|
in += "_EXPORTS";
|
|
|
|
this->ExportMacro = cmSystemTools::MakeCindentifier(in.c_str());
|
|
|
|
}
|
|
|
|
return this->ExportMacro.c_str();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2007-08-02 21:38:39 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::GetLanguages(std::set<cmStdString>& languages) const
|
|
|
|
{
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator
|
|
|
|
i = this->SourceFiles.begin(); i != this->SourceFiles.end(); ++i)
|
|
|
|
{
|
|
|
|
if(const char* lang = (*i)->GetLanguage())
|
|
|
|
{
|
|
|
|
languages.insert(lang);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-12-19 01:50:27 +03:00
|
|
|
|
2008-01-29 23:07:33 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2009-07-08 21:03:47 +04:00
|
|
|
bool cmTarget::IsChrpathUsed(const char* config)
|
2007-12-19 01:50:27 +03:00
|
|
|
{
|
2008-03-01 20:51:07 +03:00
|
|
|
#if defined(CMAKE_USE_ELF_PARSER)
|
2008-03-02 22:35:23 +03:00
|
|
|
// Only certain target types have an rpath.
|
|
|
|
if(!(this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::MODULE_LIBRARY ||
|
|
|
|
this->GetType() == cmTarget::EXECUTABLE))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the target will not be installed we do not need to change its
|
|
|
|
// rpath.
|
|
|
|
if(!this->GetHaveInstallRule())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-01 21:02:08 +03:00
|
|
|
// Skip chrpath if skipping rpath altogether.
|
|
|
|
if(this->Makefile->IsOn("CMAKE_SKIP_RPATH"))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip chrpath if it does not need to be changed at install time.
|
|
|
|
if(this->GetPropertyAsBool("BUILD_WITH_INSTALL_RPATH"))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-03 00:37:34 +03:00
|
|
|
// Allow the user to disable builtin chrpath explicitly.
|
|
|
|
if(this->Makefile->IsOn("CMAKE_NO_BUILTIN_CHRPATH"))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-01 20:51:07 +03:00
|
|
|
// Enable if the rpath flag uses a separator and the target uses ELF
|
|
|
|
// binaries.
|
2013-01-04 16:31:01 +04:00
|
|
|
if(const char* ll = this->GetLinkerLanguage(config, this))
|
2007-12-19 01:50:27 +03:00
|
|
|
{
|
2008-01-29 23:07:33 +03:00
|
|
|
std::string sepVar = "CMAKE_SHARED_LIBRARY_RUNTIME_";
|
|
|
|
sepVar += ll;
|
|
|
|
sepVar += "_FLAG_SEP";
|
|
|
|
const char* sep = this->Makefile->GetDefinition(sepVar.c_str());
|
|
|
|
if(sep && *sep)
|
|
|
|
{
|
2008-03-01 20:51:07 +03:00
|
|
|
// TODO: Add ELF check to ABI detection and get rid of
|
|
|
|
// CMAKE_EXECUTABLE_FORMAT.
|
|
|
|
if(const char* fmt =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_EXECUTABLE_FORMAT"))
|
2008-01-29 23:07:33 +03:00
|
|
|
{
|
2008-03-01 20:51:07 +03:00
|
|
|
return strcmp(fmt, "ELF") == 0;
|
2008-01-29 23:07:33 +03:00
|
|
|
}
|
|
|
|
}
|
2007-12-19 01:50:27 +03:00
|
|
|
}
|
2008-03-01 20:51:07 +03:00
|
|
|
#endif
|
2009-07-08 21:03:47 +04:00
|
|
|
static_cast<void>(config);
|
2008-01-29 23:07:33 +03:00
|
|
|
return false;
|
2007-12-19 01:50:27 +03:00
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTarget::ImportInfo const*
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTarget::GetImportInfo(const char* config, cmTarget *headTarget)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
// There is no imported information for non-imported targets.
|
|
|
|
if(!this->IsImported())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup/compute/cache the import information for this
|
|
|
|
// configuration.
|
|
|
|
std::string config_upper;
|
|
|
|
if(config && *config)
|
|
|
|
{
|
|
|
|
config_upper = cmSystemTools::UpperCase(config);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
config_upper = "NOCONFIG";
|
|
|
|
}
|
2013-01-04 16:31:01 +04:00
|
|
|
TargetConfigPair key(headTarget, config_upper);
|
2009-07-08 16:31:30 +04:00
|
|
|
typedef cmTargetInternals::ImportInfoMapType ImportInfoMapType;
|
2013-01-04 16:31:01 +04:00
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
ImportInfoMapType::const_iterator i =
|
2013-01-04 16:31:01 +04:00
|
|
|
this->Internal->ImportInfoMap.find(key);
|
2009-07-08 16:31:30 +04:00
|
|
|
if(i == this->Internal->ImportInfoMap.end())
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
ImportInfo info;
|
2013-01-04 16:31:01 +04:00
|
|
|
this->ComputeImportInfo(config_upper, info, headTarget);
|
|
|
|
ImportInfoMapType::value_type entry(key, info);
|
2009-07-08 16:31:30 +04:00
|
|
|
i = this->Internal->ImportInfoMap.insert(entry).first;
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the location is empty then the target is not available for
|
|
|
|
// this configuration.
|
2009-04-09 00:29:04 +04:00
|
|
|
if(i->second.Location.empty() && i->second.ImportLibrary.empty())
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the import information.
|
|
|
|
return &i->second;
|
|
|
|
}
|
|
|
|
|
2012-12-23 14:20:37 +04:00
|
|
|
bool cmTarget::GetMappedConfig(std::string const& desired_config,
|
|
|
|
const char** loc,
|
|
|
|
const char** imp,
|
|
|
|
std::string& suffix)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
// Track the configuration-specific property suffix.
|
2012-12-23 14:20:37 +04:00
|
|
|
suffix = "_";
|
2008-01-28 16:38:36 +03:00
|
|
|
suffix += desired_config;
|
|
|
|
|
|
|
|
std::vector<std::string> mappedConfigs;
|
|
|
|
{
|
|
|
|
std::string mapProp = "MAP_IMPORTED_CONFIG_";
|
|
|
|
mapProp += desired_config;
|
|
|
|
if(const char* mapValue = this->GetProperty(mapProp.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(mapValue, mappedConfigs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-23 14:20:37 +04:00
|
|
|
// If we needed to find one of the mapped configurations but did not
|
|
|
|
// On a DLL platform there may be only IMPORTED_IMPLIB for a shared
|
|
|
|
// library or an executable with exports.
|
|
|
|
bool allowImp = this->HasImportLibrary();
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
// If a mapping was found, check its configurations.
|
|
|
|
for(std::vector<std::string>::const_iterator mci = mappedConfigs.begin();
|
2012-12-23 14:20:37 +04:00
|
|
|
!*loc && !*imp && mci != mappedConfigs.end(); ++mci)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
// Look for this configuration.
|
|
|
|
std::string mcUpper = cmSystemTools::UpperCase(mci->c_str());
|
|
|
|
std::string locProp = "IMPORTED_LOCATION_";
|
|
|
|
locProp += mcUpper;
|
2012-12-23 14:20:37 +04:00
|
|
|
*loc = this->GetProperty(locProp.c_str());
|
2009-04-09 00:29:04 +04:00
|
|
|
if(allowImp)
|
|
|
|
{
|
|
|
|
std::string impProp = "IMPORTED_IMPLIB_";
|
|
|
|
impProp += mcUpper;
|
2012-12-23 14:20:37 +04:00
|
|
|
*imp = this->GetProperty(impProp.c_str());
|
2009-04-09 00:29:04 +04:00
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
|
|
|
|
// If it was found, use it for all properties below.
|
2012-12-23 14:20:37 +04:00
|
|
|
if(*loc || *imp)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
suffix = "_";
|
|
|
|
suffix += mcUpper;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we needed to find one of the mapped configurations but did not
|
|
|
|
// then the target is not found. The project does not want any
|
|
|
|
// other configuration.
|
2012-12-23 14:20:37 +04:00
|
|
|
if(!mappedConfigs.empty() && !*loc && !*imp)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2012-12-23 14:20:37 +04:00
|
|
|
return false;
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we have not yet found it then there are no mapped
|
|
|
|
// configurations. Look for an exact-match.
|
2012-12-23 14:20:37 +04:00
|
|
|
if(!*loc && !*imp)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
std::string locProp = "IMPORTED_LOCATION";
|
|
|
|
locProp += suffix;
|
2012-12-23 14:20:37 +04:00
|
|
|
*loc = this->GetProperty(locProp.c_str());
|
2009-04-09 00:29:04 +04:00
|
|
|
if(allowImp)
|
|
|
|
{
|
|
|
|
std::string impProp = "IMPORTED_IMPLIB";
|
|
|
|
impProp += suffix;
|
2012-12-23 14:20:37 +04:00
|
|
|
*imp = this->GetProperty(impProp.c_str());
|
2009-04-09 00:29:04 +04:00
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we have not yet found it then there are no mapped
|
|
|
|
// configurations and no exact match.
|
2012-12-23 14:20:37 +04:00
|
|
|
if(!*loc && !*imp)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
// The suffix computed above is not useful.
|
|
|
|
suffix = "";
|
|
|
|
|
|
|
|
// Look for a configuration-less location. This may be set by
|
|
|
|
// manually-written code.
|
2012-12-23 14:20:37 +04:00
|
|
|
*loc = this->GetProperty("IMPORTED_LOCATION");
|
2009-04-09 00:29:04 +04:00
|
|
|
if(allowImp)
|
|
|
|
{
|
2012-12-23 14:20:37 +04:00
|
|
|
*imp = this->GetProperty("IMPORTED_IMPLIB");
|
2009-04-09 00:29:04 +04:00
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we have not yet found it then the project is willing to try
|
|
|
|
// any available configuration.
|
2012-12-23 14:20:37 +04:00
|
|
|
if(!*loc && !*imp)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
std::vector<std::string> availableConfigs;
|
|
|
|
if(const char* iconfigs = this->GetProperty("IMPORTED_CONFIGURATIONS"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(iconfigs, availableConfigs);
|
|
|
|
}
|
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
aci = availableConfigs.begin();
|
2012-12-23 14:20:37 +04:00
|
|
|
!*loc && !*imp && aci != availableConfigs.end(); ++aci)
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
suffix = "_";
|
2009-04-09 00:28:55 +04:00
|
|
|
suffix += cmSystemTools::UpperCase(*aci);
|
2008-01-28 16:38:36 +03:00
|
|
|
std::string locProp = "IMPORTED_LOCATION";
|
|
|
|
locProp += suffix;
|
2012-12-23 14:20:37 +04:00
|
|
|
*loc = this->GetProperty(locProp.c_str());
|
2009-04-09 00:29:04 +04:00
|
|
|
if(allowImp)
|
|
|
|
{
|
|
|
|
std::string impProp = "IMPORTED_IMPLIB";
|
|
|
|
impProp += suffix;
|
2012-12-23 14:20:37 +04:00
|
|
|
*imp = this->GetProperty(impProp.c_str());
|
2009-04-09 00:29:04 +04:00
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// If we have not yet found it then the target is not available.
|
2012-12-23 14:20:37 +04:00
|
|
|
if(!*loc && !*imp)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::ComputeImportInfo(std::string const& desired_config,
|
2013-01-04 16:31:01 +04:00
|
|
|
ImportInfo& info,
|
|
|
|
cmTarget *headTarget)
|
2012-12-23 14:20:37 +04:00
|
|
|
{
|
2013-01-04 16:31:01 +04:00
|
|
|
(void)headTarget;
|
2012-12-23 14:20:37 +04:00
|
|
|
// This method finds information about an imported target from its
|
|
|
|
// properties. The "IMPORTED_" namespace is reserved for properties
|
|
|
|
// defined by the project exporting the target.
|
|
|
|
|
|
|
|
// Initialize members.
|
|
|
|
info.NoSOName = false;
|
|
|
|
|
|
|
|
const char* loc = 0;
|
|
|
|
const char* imp = 0;
|
|
|
|
std::string suffix;
|
|
|
|
if (!this->GetMappedConfig(desired_config, &loc, &imp, suffix))
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// A provided configuration has been chosen. Load the
|
|
|
|
// configuration's properties.
|
2009-04-09 00:29:04 +04:00
|
|
|
|
|
|
|
// Get the location.
|
|
|
|
if(loc)
|
|
|
|
{
|
|
|
|
info.Location = loc;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string impProp = "IMPORTED_LOCATION";
|
|
|
|
impProp += suffix;
|
|
|
|
if(const char* config_location = this->GetProperty(impProp.c_str()))
|
|
|
|
{
|
|
|
|
info.Location = config_location;
|
|
|
|
}
|
|
|
|
else if(const char* location = this->GetProperty("IMPORTED_LOCATION"))
|
|
|
|
{
|
|
|
|
info.Location = location;
|
|
|
|
}
|
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
|
|
|
|
// Get the soname.
|
|
|
|
if(this->GetType() == cmTarget::SHARED_LIBRARY)
|
|
|
|
{
|
|
|
|
std::string soProp = "IMPORTED_SONAME";
|
|
|
|
soProp += suffix;
|
|
|
|
if(const char* config_soname = this->GetProperty(soProp.c_str()))
|
|
|
|
{
|
|
|
|
info.SOName = config_soname;
|
|
|
|
}
|
|
|
|
else if(const char* soname = this->GetProperty("IMPORTED_SONAME"))
|
|
|
|
{
|
|
|
|
info.SOName = soname;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-21 19:41:11 +03:00
|
|
|
// Get the "no-soname" mark.
|
|
|
|
if(this->GetType() == cmTarget::SHARED_LIBRARY)
|
|
|
|
{
|
|
|
|
std::string soProp = "IMPORTED_NO_SONAME";
|
|
|
|
soProp += suffix;
|
|
|
|
if(const char* config_no_soname = this->GetProperty(soProp.c_str()))
|
|
|
|
{
|
|
|
|
info.NoSOName = cmSystemTools::IsOn(config_no_soname);
|
|
|
|
}
|
|
|
|
else if(const char* no_soname = this->GetProperty("IMPORTED_NO_SONAME"))
|
|
|
|
{
|
|
|
|
info.NoSOName = cmSystemTools::IsOn(no_soname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
// Get the import library.
|
2009-04-09 00:29:04 +04:00
|
|
|
if(imp)
|
|
|
|
{
|
|
|
|
info.ImportLibrary = imp;
|
|
|
|
}
|
|
|
|
else if(this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->IsExecutableWithExports())
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
|
|
|
std::string impProp = "IMPORTED_IMPLIB";
|
|
|
|
impProp += suffix;
|
|
|
|
if(const char* config_implib = this->GetProperty(impProp.c_str()))
|
|
|
|
{
|
|
|
|
info.ImportLibrary = config_implib;
|
|
|
|
}
|
|
|
|
else if(const char* implib = this->GetProperty("IMPORTED_IMPLIB"))
|
|
|
|
{
|
|
|
|
info.ImportLibrary = implib;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-31 23:45:31 +03:00
|
|
|
// Get the link interface.
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2008-01-31 23:45:31 +03:00
|
|
|
std::string linkProp = "IMPORTED_LINK_INTERFACE_LIBRARIES";
|
2008-01-28 16:38:36 +03:00
|
|
|
linkProp += suffix;
|
|
|
|
if(const char* config_libs = this->GetProperty(linkProp.c_str()))
|
|
|
|
{
|
2008-01-31 23:45:31 +03:00
|
|
|
cmSystemTools::ExpandListArgument(config_libs,
|
|
|
|
info.LinkInterface.Libraries);
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
2008-01-31 23:45:31 +03:00
|
|
|
else if(const char* libs =
|
|
|
|
this->GetProperty("IMPORTED_LINK_INTERFACE_LIBRARIES"))
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2008-01-31 23:45:31 +03:00
|
|
|
cmSystemTools::ExpandListArgument(libs,
|
|
|
|
info.LinkInterface.Libraries);
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-31 23:45:31 +03:00
|
|
|
// Get the link dependencies.
|
|
|
|
{
|
|
|
|
std::string linkProp = "IMPORTED_LINK_DEPENDENT_LIBRARIES";
|
|
|
|
linkProp += suffix;
|
|
|
|
if(const char* config_libs = this->GetProperty(linkProp.c_str()))
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2008-01-31 23:45:31 +03:00
|
|
|
cmSystemTools::ExpandListArgument(config_libs,
|
|
|
|
info.LinkInterface.SharedDeps);
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
2008-01-31 23:45:31 +03:00
|
|
|
else if(const char* libs =
|
|
|
|
this->GetProperty("IMPORTED_LINK_DEPENDENT_LIBRARIES"))
|
2008-01-28 16:38:36 +03:00
|
|
|
{
|
2008-01-31 23:45:31 +03:00
|
|
|
cmSystemTools::ExpandListArgument(libs, info.LinkInterface.SharedDeps);
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
2008-01-31 23:45:31 +03:00
|
|
|
}
|
2009-07-11 18:12:05 +04:00
|
|
|
|
|
|
|
// Get the link languages.
|
|
|
|
if(this->GetType() == cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
std::string linkProp = "IMPORTED_LINK_INTERFACE_LANGUAGES";
|
|
|
|
linkProp += suffix;
|
|
|
|
if(const char* config_libs = this->GetProperty(linkProp.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(config_libs,
|
|
|
|
info.LinkInterface.Languages);
|
|
|
|
}
|
|
|
|
else if(const char* libs =
|
|
|
|
this->GetProperty("IMPORTED_LINK_INTERFACE_LANGUAGES"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(libs,
|
|
|
|
info.LinkInterface.Languages);
|
|
|
|
}
|
|
|
|
}
|
2009-09-01 18:37:37 +04:00
|
|
|
|
|
|
|
// Get the cyclic repetition count.
|
|
|
|
if(this->GetType() == cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
std::string linkProp = "IMPORTED_LINK_INTERFACE_MULTIPLICITY";
|
|
|
|
linkProp += suffix;
|
|
|
|
if(const char* config_reps = this->GetProperty(linkProp.c_str()))
|
|
|
|
{
|
|
|
|
sscanf(config_reps, "%u", &info.LinkInterface.Multiplicity);
|
|
|
|
}
|
|
|
|
else if(const char* reps =
|
|
|
|
this->GetProperty("IMPORTED_LINK_INTERFACE_MULTIPLICITY"))
|
|
|
|
{
|
|
|
|
sscanf(reps, "%u", &info.LinkInterface.Multiplicity);
|
|
|
|
}
|
|
|
|
}
|
2008-01-28 16:38:36 +03:00
|
|
|
}
|
2008-01-29 23:07:33 +03:00
|
|
|
|
2008-01-31 01:25:52 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTarget::LinkInterface const* cmTarget::GetLinkInterface(const char* config,
|
|
|
|
cmTarget *head)
|
2008-01-31 01:25:52 +03:00
|
|
|
{
|
2008-01-31 23:45:31 +03:00
|
|
|
// Imported targets have their own link interface.
|
|
|
|
if(this->IsImported())
|
|
|
|
{
|
2013-01-04 16:31:01 +04:00
|
|
|
if(cmTarget::ImportInfo const* info = this->GetImportInfo(config, head))
|
2008-01-31 23:45:31 +03:00
|
|
|
{
|
|
|
|
return &info->LinkInterface;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-07 00:25:20 +04:00
|
|
|
// Link interfaces are not supported for executables that do not
|
|
|
|
// export symbols.
|
|
|
|
if(this->GetType() == cmTarget::EXECUTABLE &&
|
|
|
|
!this->IsExecutableWithExports())
|
2008-01-31 01:25:52 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup any existing link interface for this configuration.
|
2013-01-04 16:31:01 +04:00
|
|
|
TargetConfigPair key(head, cmSystemTools::UpperCase(config? config : ""));
|
|
|
|
|
2009-07-07 17:45:29 +04:00
|
|
|
cmTargetInternals::LinkInterfaceMapType::iterator
|
2009-07-07 19:30:36 +04:00
|
|
|
i = this->Internal->LinkInterfaceMap.find(key);
|
2009-07-07 17:45:29 +04:00
|
|
|
if(i == this->Internal->LinkInterfaceMap.end())
|
2008-01-31 01:25:52 +03:00
|
|
|
{
|
|
|
|
// Compute the link interface for this configuration.
|
2009-07-07 17:45:29 +04:00
|
|
|
cmTargetInternals::OptionalLinkInterface iface;
|
2013-01-04 16:31:01 +04:00
|
|
|
iface.Exists = this->ComputeLinkInterface(config, iface, head);
|
2008-01-31 01:25:52 +03:00
|
|
|
|
|
|
|
// Store the information for this configuration.
|
2009-07-07 19:30:36 +04:00
|
|
|
cmTargetInternals::LinkInterfaceMapType::value_type entry(key, iface);
|
2009-07-07 17:45:29 +04:00
|
|
|
i = this->Internal->LinkInterfaceMap.insert(entry).first;
|
2008-01-31 01:25:52 +03:00
|
|
|
}
|
|
|
|
|
2009-07-07 17:45:29 +04:00
|
|
|
return i->second.Exists? &i->second : 0;
|
2008-01-31 01:25:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2013-01-04 16:31:01 +04:00
|
|
|
bool cmTarget::ComputeLinkInterface(const char* config, LinkInterface& iface,
|
|
|
|
cmTarget *headTarget)
|
2008-01-31 01:25:52 +03:00
|
|
|
{
|
|
|
|
// Construct the property name suffix for this configuration.
|
|
|
|
std::string suffix = "_";
|
|
|
|
if(config && *config)
|
|
|
|
{
|
|
|
|
suffix += cmSystemTools::UpperCase(config);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
suffix += "NOCONFIG";
|
|
|
|
}
|
|
|
|
|
2009-07-07 00:25:20 +04:00
|
|
|
// An explicit list of interface libraries may be set for shared
|
|
|
|
// libraries and executables that export symbols.
|
|
|
|
const char* explicitLibraries = 0;
|
|
|
|
if(this->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->IsExecutableWithExports())
|
2008-01-31 01:25:52 +03:00
|
|
|
{
|
2009-07-07 00:25:20 +04:00
|
|
|
// Lookup the per-configuration property.
|
|
|
|
std::string propName = "LINK_INTERFACE_LIBRARIES";
|
|
|
|
propName += suffix;
|
|
|
|
explicitLibraries = this->GetProperty(propName.c_str());
|
|
|
|
|
|
|
|
// If not set, try the generic property.
|
|
|
|
if(!explicitLibraries)
|
|
|
|
{
|
|
|
|
explicitLibraries = this->GetProperty("LINK_INTERFACE_LIBRARIES");
|
|
|
|
}
|
2008-01-31 01:25:52 +03:00
|
|
|
}
|
|
|
|
|
2011-03-09 17:52:46 +03:00
|
|
|
// There is no implicit link interface for executables or modules
|
|
|
|
// so if none was explicitly set then there is no link interface.
|
|
|
|
// Note that CMake versions 2.2 and below allowed linking to modules.
|
|
|
|
bool canLinkModules = this->Makefile->NeedBackwardsCompatibility(2,2);
|
|
|
|
if(!explicitLibraries &&
|
|
|
|
(this->GetType() == cmTarget::EXECUTABLE ||
|
2011-03-14 22:34:26 +03:00
|
|
|
(this->GetType() == cmTarget::MODULE_LIBRARY && !canLinkModules)))
|
2008-01-31 01:25:52 +03:00
|
|
|
{
|
2009-07-07 17:45:29 +04:00
|
|
|
return false;
|
2008-01-31 23:45:31 +03:00
|
|
|
}
|
|
|
|
|
2009-07-07 00:25:20 +04:00
|
|
|
if(explicitLibraries)
|
2008-01-31 23:45:31 +03:00
|
|
|
{
|
2009-07-07 00:25:20 +04:00
|
|
|
// The interface libraries have been explicitly set.
|
2009-07-07 17:45:29 +04:00
|
|
|
cmSystemTools::ExpandListArgument(explicitLibraries, iface.Libraries);
|
2008-01-31 23:45:31 +03:00
|
|
|
|
2009-07-08 20:04:48 +04:00
|
|
|
if(this->GetType() == cmTarget::SHARED_LIBRARY)
|
2008-01-31 23:45:31 +03:00
|
|
|
{
|
2009-07-08 20:04:48 +04:00
|
|
|
// Shared libraries may have runtime implementation dependencies
|
|
|
|
// on other shared libraries that are not in the interface.
|
|
|
|
std::set<cmStdString> emitted;
|
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
li = iface.Libraries.begin(); li != iface.Libraries.end(); ++li)
|
2008-01-31 23:45:31 +03:00
|
|
|
{
|
2009-07-08 20:04:48 +04:00
|
|
|
emitted.insert(*li);
|
2008-01-31 23:45:31 +03:00
|
|
|
}
|
2013-01-04 16:31:01 +04:00
|
|
|
LinkImplementation const* impl = this->GetLinkImplementation(config,
|
|
|
|
headTarget);
|
2009-07-08 20:04:48 +04:00
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
li = impl->Libraries.begin(); li != impl->Libraries.end(); ++li)
|
2008-01-31 23:45:31 +03:00
|
|
|
{
|
2009-07-08 20:04:48 +04:00
|
|
|
if(emitted.insert(*li).second)
|
2009-07-07 00:25:20 +04:00
|
|
|
{
|
2009-07-08 20:04:48 +04:00
|
|
|
if(cmTarget* tgt = this->Makefile->FindTargetToUse(li->c_str()))
|
|
|
|
{
|
|
|
|
// This is a runtime dependency on another shared library.
|
|
|
|
if(tgt->GetType() == cmTarget::SHARED_LIBRARY)
|
|
|
|
{
|
|
|
|
iface.SharedDeps.push_back(*li);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: Recognize shared library file names. Perhaps this
|
|
|
|
// should be moved to cmComputeLinkInformation, but that creates
|
|
|
|
// a chicken-and-egg problem since this list is needed for its
|
|
|
|
// construction.
|
|
|
|
}
|
2008-01-31 23:45:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-31 01:25:52 +03:00
|
|
|
}
|
2009-07-08 20:04:48 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// The link implementation is the default link interface.
|
2013-01-04 16:31:01 +04:00
|
|
|
LinkImplementation const* impl = this->GetLinkImplementation(config,
|
|
|
|
headTarget);
|
2009-07-08 20:04:48 +04:00
|
|
|
iface.Libraries = impl->Libraries;
|
|
|
|
iface.WrongConfigLibraries = impl->WrongConfigLibraries;
|
2009-07-10 21:53:28 +04:00
|
|
|
if(this->GetType() == cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
// Targets using this archive need its language runtime libraries.
|
|
|
|
iface.Languages = impl->Languages;
|
|
|
|
}
|
2009-07-08 20:04:48 +04:00
|
|
|
}
|
2008-01-31 23:45:31 +03:00
|
|
|
|
2009-09-01 18:37:37 +04:00
|
|
|
if(this->GetType() == cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
// How many repetitions are needed if this library has cyclic
|
|
|
|
// dependencies?
|
|
|
|
std::string propName = "LINK_INTERFACE_MULTIPLICITY";
|
|
|
|
propName += suffix;
|
|
|
|
if(const char* config_reps = this->GetProperty(propName.c_str()))
|
|
|
|
{
|
|
|
|
sscanf(config_reps, "%u", &iface.Multiplicity);
|
|
|
|
}
|
|
|
|
else if(const char* reps =
|
|
|
|
this->GetProperty("LINK_INTERFACE_MULTIPLICITY"))
|
|
|
|
{
|
|
|
|
sscanf(reps, "%u", &iface.Multiplicity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-07 17:45:29 +04:00
|
|
|
return true;
|
2008-01-31 01:25:52 +03:00
|
|
|
}
|
|
|
|
|
2009-07-08 20:04:48 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTarget::LinkImplementation const*
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTarget::GetLinkImplementation(const char* config, cmTarget *head)
|
2009-07-08 20:04:48 +04:00
|
|
|
{
|
|
|
|
// There is no link implementation for imported targets.
|
|
|
|
if(this->IsImported())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup any existing link implementation for this configuration.
|
2013-01-04 16:31:01 +04:00
|
|
|
TargetConfigPair key(head, cmSystemTools::UpperCase(config? config : ""));
|
|
|
|
|
2009-07-08 20:04:48 +04:00
|
|
|
cmTargetInternals::LinkImplMapType::iterator
|
|
|
|
i = this->Internal->LinkImplMap.find(key);
|
|
|
|
if(i == this->Internal->LinkImplMap.end())
|
|
|
|
{
|
|
|
|
// Compute the link implementation for this configuration.
|
|
|
|
LinkImplementation impl;
|
2013-01-04 16:31:01 +04:00
|
|
|
this->ComputeLinkImplementation(config, impl, head);
|
2009-07-08 20:04:48 +04:00
|
|
|
|
|
|
|
// Store the information for this configuration.
|
|
|
|
cmTargetInternals::LinkImplMapType::value_type entry(key, impl);
|
|
|
|
i = this->Internal->LinkImplMap.insert(entry).first;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &i->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmTarget::ComputeLinkImplementation(const char* config,
|
2013-01-04 16:31:01 +04:00
|
|
|
LinkImplementation& impl,
|
|
|
|
cmTarget *head)
|
2009-07-08 20:04:48 +04:00
|
|
|
{
|
|
|
|
// Compute which library configuration to link.
|
|
|
|
cmTarget::LinkLibraryType linkType = this->ComputeLinkType(config);
|
|
|
|
|
2009-07-10 21:53:28 +04:00
|
|
|
// Collect libraries directly linked in this configuration.
|
2012-12-06 15:14:03 +04:00
|
|
|
std::vector<std::string> llibs;
|
|
|
|
this->GetDirectLinkLibraries(config, llibs, head);
|
|
|
|
for(std::vector<std::string>::const_iterator li = llibs.begin();
|
2009-07-08 20:04:48 +04:00
|
|
|
li != llibs.end(); ++li)
|
|
|
|
{
|
|
|
|
// Skip entries that resolve to the target itself or are empty.
|
2012-12-06 15:14:03 +04:00
|
|
|
std::string item = this->CheckCMP0004(*li);
|
2009-07-08 20:04:48 +04:00
|
|
|
if(item == this->GetName() || item.empty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2012-12-06 15:14:03 +04:00
|
|
|
// The entry is meant for this configuration.
|
|
|
|
impl.Libraries.push_back(item);
|
2012-11-01 13:16:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
LinkLibraryVectorType const& oldllibs = this->GetOriginalLinkLibraries();
|
|
|
|
for(cmTarget::LinkLibraryVectorType::const_iterator li = oldllibs.begin();
|
|
|
|
li != oldllibs.end(); ++li)
|
|
|
|
{
|
|
|
|
if(li->second != cmTarget::GENERAL && li->second != linkType)
|
2009-07-08 20:04:48 +04:00
|
|
|
{
|
2012-11-01 13:16:56 +04:00
|
|
|
std::string item = this->CheckCMP0004(li->first);
|
|
|
|
if(item == this->GetName() || item.empty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2009-07-08 20:04:48 +04:00
|
|
|
// Support OLD behavior for CMP0003.
|
|
|
|
impl.WrongConfigLibraries.push_back(item);
|
|
|
|
}
|
|
|
|
}
|
2009-07-10 21:53:28 +04:00
|
|
|
|
|
|
|
// This target needs runtime libraries for its source languages.
|
|
|
|
std::set<cmStdString> languages;
|
2012-03-12 22:40:58 +04:00
|
|
|
// Get languages used in our source files.
|
2009-07-10 21:53:28 +04:00
|
|
|
this->GetLanguages(languages);
|
2012-03-12 22:40:58 +04:00
|
|
|
// Get languages used in object library sources.
|
|
|
|
for(std::vector<std::string>::iterator i = this->ObjectLibraries.begin();
|
|
|
|
i != this->ObjectLibraries.end(); ++i)
|
|
|
|
{
|
|
|
|
if(cmTarget* objLib = this->Makefile->FindTargetToUse(i->c_str()))
|
|
|
|
{
|
|
|
|
if(objLib->GetType() == cmTarget::OBJECT_LIBRARY)
|
|
|
|
{
|
|
|
|
objLib->GetLanguages(languages);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Copy the set of langauges to the link implementation.
|
2009-07-10 21:53:28 +04:00
|
|
|
for(std::set<cmStdString>::iterator li = languages.begin();
|
|
|
|
li != languages.end(); ++li)
|
|
|
|
{
|
|
|
|
impl.Languages.push_back(*li);
|
|
|
|
}
|
2009-07-08 20:04:48 +04:00
|
|
|
}
|
|
|
|
|
2009-07-07 00:24:45 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::CheckCMP0004(std::string const& item)
|
|
|
|
{
|
|
|
|
// Strip whitespace off the library names because we used to do this
|
|
|
|
// in case variables were expanded at generate time. We no longer
|
|
|
|
// do the expansion but users link to libraries like " ${VAR} ".
|
|
|
|
std::string lib = item;
|
|
|
|
std::string::size_type pos = lib.find_first_not_of(" \t\r\n");
|
|
|
|
if(pos != lib.npos)
|
|
|
|
{
|
|
|
|
lib = lib.substr(pos, lib.npos);
|
|
|
|
}
|
|
|
|
pos = lib.find_last_not_of(" \t\r\n");
|
|
|
|
if(pos != lib.npos)
|
|
|
|
{
|
|
|
|
lib = lib.substr(0, pos+1);
|
|
|
|
}
|
|
|
|
if(lib != item)
|
|
|
|
{
|
|
|
|
cmake* cm = this->Makefile->GetCMakeInstance();
|
|
|
|
switch(this->PolicyStatusCMP0004)
|
|
|
|
{
|
|
|
|
case cmPolicies::WARN:
|
|
|
|
{
|
|
|
|
cmOStringStream w;
|
|
|
|
w << (this->Makefile->GetPolicies()
|
|
|
|
->GetPolicyWarning(cmPolicies::CMP0004)) << "\n"
|
|
|
|
<< "Target \"" << this->GetName() << "\" links to item \""
|
|
|
|
<< item << "\" which has leading or trailing whitespace.";
|
|
|
|
cm->IssueMessage(cmake::AUTHOR_WARNING, w.str(),
|
|
|
|
this->GetBacktrace());
|
|
|
|
}
|
|
|
|
case cmPolicies::OLD:
|
|
|
|
break;
|
|
|
|
case cmPolicies::NEW:
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "Target \"" << this->GetName() << "\" links to item \""
|
|
|
|
<< item << "\" which has leading or trailing whitespace. "
|
|
|
|
<< "This is now an error according to policy CMP0004.";
|
|
|
|
cm->IssueMessage(cmake::FATAL_ERROR, e.str(), this->GetBacktrace());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << (this->Makefile->GetPolicies()
|
|
|
|
->GetRequiredPolicyError(cmPolicies::CMP0004)) << "\n"
|
|
|
|
<< "Target \"" << this->GetName() << "\" links to item \""
|
|
|
|
<< item << "\" which has leading or trailing whitespace.";
|
|
|
|
cm->IssueMessage(cmake::FATAL_ERROR, e.str(), this->GetBacktrace());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return lib;
|
|
|
|
}
|
|
|
|
|
2012-11-05 19:14:02 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmComputeLinkInformation*
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTarget::GetLinkInformation(const char* config, cmTarget *head)
|
2012-11-05 19:14:02 +04:00
|
|
|
{
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTarget *headTarget = head ? head : this;
|
2012-11-05 19:14:02 +04:00
|
|
|
// Lookup any existing information for this configuration.
|
2013-01-04 16:31:01 +04:00
|
|
|
TargetConfigPair key(headTarget,
|
|
|
|
cmSystemTools::UpperCase(config?config:""));
|
|
|
|
cmTargetLinkInformationMap::iterator
|
|
|
|
i = this->LinkInformation.find(key);
|
2012-11-05 19:14:02 +04:00
|
|
|
if(i == this->LinkInformation.end())
|
|
|
|
{
|
|
|
|
// Compute information for this configuration.
|
|
|
|
cmComputeLinkInformation* info =
|
2013-01-04 16:31:01 +04:00
|
|
|
new cmComputeLinkInformation(this, config, headTarget);
|
2012-11-05 19:14:02 +04:00
|
|
|
if(!info || !info->Compute())
|
|
|
|
{
|
|
|
|
delete info;
|
|
|
|
info = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the information for this configuration.
|
2013-01-04 16:31:01 +04:00
|
|
|
cmTargetLinkInformationMap::value_type entry(key, info);
|
2012-11-05 19:14:02 +04:00
|
|
|
i = this->LinkInformation.insert(entry).first;
|
|
|
|
}
|
|
|
|
return i->second;
|
|
|
|
}
|
|
|
|
|
2012-07-16 21:44:19 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetFrameworkDirectory(const char* config)
|
|
|
|
{
|
|
|
|
std::string fpath;
|
|
|
|
fpath += this->GetFullName(config, false);
|
|
|
|
fpath += ".framework/Versions/";
|
|
|
|
fpath += this->GetFrameworkVersion();
|
|
|
|
fpath += "/";
|
|
|
|
return fpath;
|
|
|
|
}
|
|
|
|
|
2012-07-16 21:42:56 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::BuildMacContentDirectory(const std::string& base,
|
|
|
|
const char* config,
|
|
|
|
bool includeMacOS)
|
|
|
|
{
|
|
|
|
std::string fpath = base;
|
|
|
|
if(this->IsAppBundleOnApple())
|
|
|
|
{
|
|
|
|
fpath += this->GetFullName(config, false);
|
|
|
|
fpath += ".app/Contents/";
|
|
|
|
if(includeMacOS)
|
|
|
|
fpath += "MacOS/";
|
|
|
|
}
|
|
|
|
if(this->IsFrameworkOnApple())
|
|
|
|
{
|
2012-07-16 21:44:19 +04:00
|
|
|
fpath += this->GetFrameworkDirectory(config);
|
2012-07-16 21:42:56 +04:00
|
|
|
}
|
|
|
|
if(this->IsCFBundleOnApple())
|
|
|
|
{
|
|
|
|
fpath += this->GetFullName(config, false);
|
|
|
|
fpath += ".";
|
|
|
|
const char *ext = this->GetProperty("BUNDLE_EXTENSION");
|
|
|
|
if (!ext)
|
|
|
|
{
|
|
|
|
ext = "bundle";
|
|
|
|
}
|
|
|
|
fpath += ext;
|
|
|
|
fpath += "/Contents/";
|
|
|
|
if(includeMacOS)
|
|
|
|
fpath += "MacOS/";
|
|
|
|
}
|
|
|
|
return fpath;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmTarget::GetMacContentDirectory(const char* config,
|
|
|
|
bool implib,
|
|
|
|
bool includeMacOS)
|
|
|
|
{
|
|
|
|
// Start with the output directory for the target.
|
|
|
|
std::string fpath = this->GetDirectory(config, implib);
|
|
|
|
fpath += "/";
|
|
|
|
fpath = this->BuildMacContentDirectory(fpath, config, includeMacOS);
|
|
|
|
return fpath;
|
|
|
|
}
|
|
|
|
|
2012-11-05 19:14:02 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTargetLinkInformationMap
|
|
|
|
::cmTargetLinkInformationMap(cmTargetLinkInformationMap const& r): derived()
|
|
|
|
{
|
|
|
|
// Ideally cmTarget instances should never be copied. However until
|
|
|
|
// we can make a sweep to remove that, this copy constructor avoids
|
|
|
|
// allowing the resources (LinkInformation) from getting copied. In
|
|
|
|
// the worst case this will lead to extra cmComputeLinkInformation
|
|
|
|
// instances. We also enforce in debug mode that the map be emptied
|
|
|
|
// when copied.
|
|
|
|
static_cast<void>(r);
|
|
|
|
assert(r.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTargetLinkInformationMap::~cmTargetLinkInformationMap()
|
|
|
|
{
|
|
|
|
for(derived::iterator i = this->begin(); i != this->end(); ++i)
|
|
|
|
{
|
|
|
|
delete i->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-19 00:38:34 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTargetInternalPointer::cmTargetInternalPointer()
|
|
|
|
{
|
|
|
|
this->Pointer = new cmTargetInternals;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTargetInternalPointer
|
2009-10-06 00:14:17 +04:00
|
|
|
::cmTargetInternalPointer(cmTargetInternalPointer const& r)
|
2008-02-19 00:38:34 +03:00
|
|
|
{
|
|
|
|
// Ideally cmTarget instances should never be copied. However until
|
|
|
|
// we can make a sweep to remove that, this copy constructor avoids
|
|
|
|
// allowing the resources (Internals) to be copied.
|
2009-10-06 00:14:17 +04:00
|
|
|
this->Pointer = new cmTargetInternals(*r.Pointer);
|
2008-02-19 00:38:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTargetInternalPointer::~cmTargetInternalPointer()
|
|
|
|
{
|
2012-11-20 01:47:30 +04:00
|
|
|
deleteAndClear(this->Pointer->IncludeDirectoriesEntries);
|
2008-02-19 00:38:34 +03:00
|
|
|
delete this->Pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmTargetInternalPointer&
|
2008-02-19 17:09:46 +03:00
|
|
|
cmTargetInternalPointer::operator=(cmTargetInternalPointer const& r)
|
2008-02-19 00:38:34 +03:00
|
|
|
{
|
2008-02-19 17:09:46 +03:00
|
|
|
if(this == &r) { return *this; } // avoid warning on HP about self check
|
2008-02-19 00:38:34 +03:00
|
|
|
// Ideally cmTarget instances should never be copied. However until
|
|
|
|
// we can make a sweep to remove that, this copy constructor avoids
|
|
|
|
// allowing the resources (Internals) to be copied.
|
2008-03-04 21:51:27 +03:00
|
|
|
cmTargetInternals* oldPointer = this->Pointer;
|
2009-10-06 00:14:17 +04:00
|
|
|
this->Pointer = new cmTargetInternals(*r.Pointer);
|
2008-03-04 21:51:27 +03:00
|
|
|
delete oldPointer;
|
2008-02-19 00:38:34 +03:00
|
|
|
return *this;
|
|
|
|
}
|