2001-01-11 22:55:47 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 22:55:47 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-01-21 23:30:43 +03:00
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-01-11 22:55:47 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-04-25 00:49:12 +04:00
|
|
|
#include "cmSourceFile.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
2006-12-13 20:19:59 +03:00
|
|
|
#include "cmMakefile.h"
|
2007-06-18 19:59:23 +04:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmake.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceFile::cmSourceFile(cmMakefile* mf, const char* name):
|
|
|
|
Location(mf, name)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
this->CustomCommand = 0;
|
|
|
|
this->Properties.SetCMakeInstance(mf->GetCMakeInstance());
|
|
|
|
this->FindFullPathFailed = false;
|
|
|
|
}
|
2004-04-27 01:32:56 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceFile::~cmSourceFile()
|
|
|
|
{
|
|
|
|
this->SetCustomCommand(0);
|
|
|
|
}
|
2001-05-09 16:51:54 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string const& cmSourceFile::GetExtension() const
|
|
|
|
{
|
|
|
|
return this->Extension;
|
|
|
|
}
|
2004-04-27 01:32:56 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmSourceFile::GetLanguage()
|
|
|
|
{
|
|
|
|
// Compute the final location of the file if necessary.
|
|
|
|
if(this->FullPath.empty())
|
|
|
|
{
|
|
|
|
this->GetFullPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now try to determine the language.
|
|
|
|
return static_cast<cmSourceFile const*>(this)->GetLanguage();
|
|
|
|
}
|
2001-05-09 16:51:54 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmSourceFile::GetLanguage() const
|
|
|
|
{
|
|
|
|
// If the language was set explicitly by the user then use it.
|
|
|
|
if(const char* lang = this->GetProperty("LANGUAGE"))
|
2000-11-02 18:24:59 +03:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
return lang;
|
|
|
|
}
|
2001-12-28 23:54:05 +03:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
// If the language was determined from the source file extension use it.
|
|
|
|
if(!this->Language.empty())
|
|
|
|
{
|
|
|
|
return this->Language.c_str();
|
|
|
|
}
|
2005-11-17 21:49:10 +03:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
// The language is not known.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-17 18:12:19 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceFileLocation const& cmSourceFile::GetLocation() const
|
|
|
|
{
|
|
|
|
return this->Location;
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string const& cmSourceFile::GetFullPath()
|
|
|
|
{
|
|
|
|
if(this->FullPath.empty())
|
|
|
|
{
|
|
|
|
if(this->FindFullPath())
|
2004-04-18 21:16:34 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
this->CheckExtension();
|
2004-04-18 21:16:34 +04:00
|
|
|
}
|
2000-11-02 18:24:59 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
return this->FullPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string const& cmSourceFile::GetFullPath() const
|
|
|
|
{
|
|
|
|
return this->FullPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmSourceFile::FindFullPath()
|
|
|
|
{
|
|
|
|
// If thie method has already failed once do not try again.
|
|
|
|
if(this->FindFullPathFailed)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the file is generated compute the location without checking on
|
|
|
|
// disk.
|
|
|
|
if(this->GetPropertyAsBool("GENERATED"))
|
2001-06-15 01:06:10 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// The file is either already a full path or is relative to the
|
|
|
|
// build directory for the target.
|
|
|
|
this->Location.DirectoryUseBinary();
|
|
|
|
this->FullPath = this->Location.GetDirectory();
|
|
|
|
this->FullPath += "/";
|
|
|
|
this->FullPath += this->Location.GetName();
|
|
|
|
return true;
|
2001-06-15 01:06:10 +04:00
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
// The file is not generated. It must exist on disk.
|
|
|
|
cmMakefile* mf = this->Location.GetMakefile();
|
|
|
|
const char* tryDirs[3] = {0, 0, 0};
|
|
|
|
if(this->Location.DirectoryIsAmbiguous())
|
|
|
|
{
|
|
|
|
tryDirs[0] = mf->GetCurrentDirectory();
|
|
|
|
tryDirs[1] = mf->GetCurrentOutputDirectory();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tryDirs[0] = "";
|
|
|
|
}
|
|
|
|
const std::vector<std::string>& srcExts = mf->GetSourceExtensions();
|
|
|
|
const std::vector<std::string>& hdrExts = mf->GetHeaderExtensions();
|
|
|
|
for(const char* const* di = tryDirs; *di; ++di)
|
2001-07-16 18:14:41 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
std::string tryPath = this->Location.GetDirectory();
|
|
|
|
if(!tryPath.empty())
|
|
|
|
{
|
|
|
|
tryPath += "/";
|
|
|
|
}
|
|
|
|
tryPath += this->Location.GetName();
|
|
|
|
tryPath = cmSystemTools::CollapseFullPath(tryPath.c_str(), *di);
|
|
|
|
if(this->TryFullPath(tryPath.c_str(), 0))
|
2001-07-17 02:40:42 +04:00
|
|
|
{
|
2006-05-05 19:46:20 +04:00
|
|
|
return true;
|
2001-07-17 02:40:42 +04:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ei = srcExts.begin();
|
|
|
|
ei != srcExts.end(); ++ei)
|
|
|
|
{
|
|
|
|
if(this->TryFullPath(tryPath.c_str(), ei->c_str()))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(std::vector<std::string>::const_iterator ei = hdrExts.begin();
|
|
|
|
ei != hdrExts.end(); ++ei)
|
|
|
|
{
|
|
|
|
if(this->TryFullPath(tryPath.c_str(), ei->c_str()))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2001-07-16 18:14:41 +04:00
|
|
|
}
|
|
|
|
|
2006-05-05 19:46:20 +04:00
|
|
|
cmOStringStream e;
|
2007-06-18 19:59:23 +04:00
|
|
|
e << "Cannot find source file \"" << this->Location.GetName() << "\"";
|
2006-05-05 19:46:20 +04:00
|
|
|
e << "\n\nTried extensions";
|
2007-06-18 19:59:23 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ext = srcExts.begin();
|
|
|
|
ext != srcExts.end(); ++ext)
|
2001-07-16 18:14:41 +04:00
|
|
|
{
|
2006-05-05 19:46:20 +04:00
|
|
|
e << " ." << *ext;
|
2001-07-16 18:14:41 +04:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
for(std::vector<std::string>::const_iterator ext = hdrExts.begin();
|
|
|
|
ext != hdrExts.end(); ++ext)
|
2000-09-12 13:30:35 +04:00
|
|
|
{
|
2006-05-05 19:46:20 +04:00
|
|
|
e << " ." << *ext;
|
2000-09-12 13:30:35 +04:00
|
|
|
}
|
2006-05-05 19:46:20 +04:00
|
|
|
cmSystemTools::Error(e.str().c_str());
|
2007-06-18 19:59:23 +04:00
|
|
|
this->FindFullPathFailed = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmSourceFile::TryFullPath(const char* tp, const char* ext)
|
|
|
|
{
|
|
|
|
std::string tryPath = tp;
|
|
|
|
if(ext && *ext)
|
|
|
|
{
|
|
|
|
tryPath += ".";
|
|
|
|
tryPath += ext;
|
|
|
|
}
|
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str()))
|
|
|
|
{
|
|
|
|
this->FullPath = tryPath;
|
|
|
|
return true;
|
|
|
|
}
|
2006-05-05 19:46:20 +04:00
|
|
|
return false;
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceFile::CheckExtension()
|
2001-02-27 01:15:44 +03:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// Compute the extension.
|
|
|
|
std::string realExt =
|
|
|
|
cmSystemTools::GetFilenameLastExtension(this->FullPath);
|
|
|
|
if(!realExt.empty())
|
2002-01-21 18:11:47 +03:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// Store the extension without the leading '.'.
|
|
|
|
this->Extension = realExt.substr(1);
|
2002-01-21 18:11:47 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Look for object files.
|
|
|
|
if(this->Extension == "obj" ||
|
|
|
|
this->Extension == "o" ||
|
|
|
|
this->Extension == "lo")
|
2005-11-17 21:49:10 +03:00
|
|
|
{
|
|
|
|
this->SetProperty("EXTERNAL_OBJECT", "1");
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// Look for header files.
|
|
|
|
cmMakefile* mf = this->Location.GetMakefile();
|
|
|
|
const std::vector<std::string>& hdrExts = mf->GetHeaderExtensions();
|
|
|
|
if(std::find(hdrExts.begin(), hdrExts.end(), this->Extension) ==
|
|
|
|
hdrExts.end())
|
|
|
|
{
|
2007-11-19 22:27:31 +03:00
|
|
|
// This is not a known header file extension. Mark it as not a
|
|
|
|
// header unless the user has already explicitly set the property.
|
|
|
|
if(!this->GetProperty("HEADER_FILE_ONLY"))
|
|
|
|
{
|
|
|
|
this->SetProperty("HEADER_FILE_ONLY", "0");
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-11-19 22:27:31 +03:00
|
|
|
// This is a known header file extension. The source cannot be compiled.
|
2007-06-18 19:59:23 +04:00
|
|
|
this->SetProperty("HEADER_FILE_ONLY", "1");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to identify the source file language from the extension.
|
|
|
|
cmGlobalGenerator* gg = mf->GetLocalGenerator()->GetGlobalGenerator();
|
|
|
|
if(const char* l = gg->GetLanguageFromExtension(this->Extension.c_str()))
|
|
|
|
{
|
|
|
|
this->Language = l;
|
|
|
|
}
|
2001-02-27 01:15:44 +03:00
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmSourceFile::Matches(cmSourceFileLocation const& loc)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
return this->Location.Matches(loc);
|
2002-08-16 19:20:18 +04:00
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-08-16 19:20:18 +04:00
|
|
|
void cmSourceFile::SetProperty(const char* prop, const char* value)
|
|
|
|
{
|
|
|
|
if (!prop)
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
return;
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
2002-08-27 22:45:25 +04:00
|
|
|
if (!value)
|
|
|
|
{
|
2003-01-31 21:50:42 +03:00
|
|
|
value = "NOTFOUND";
|
|
|
|
}
|
2006-12-07 17:45:32 +03:00
|
|
|
|
|
|
|
this->Properties.SetProperty(prop, value, cmProperty::SOURCE_FILE);
|
2002-08-16 19:20:18 +04:00
|
|
|
}
|
|
|
|
|
2008-01-18 02:13:55 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceFile::AppendProperty(const char* prop, const char* value)
|
|
|
|
{
|
|
|
|
if (!prop)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->Properties.AppendProperty(prop, value, cmProperty::SOURCE_FILE);
|
|
|
|
}
|
|
|
|
|
2008-01-30 19:21:54 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmSourceFile::GetPropertyForUser(const char *prop)
|
|
|
|
{
|
|
|
|
// This method is a consequence of design history and backwards
|
|
|
|
// compatibility. GetProperty is (and should be) a const method.
|
|
|
|
// Computed properties should not be stored back in the property map
|
|
|
|
// but instead reference information already known. If they need to
|
|
|
|
// cache information in a mutable ivar to provide the return string
|
|
|
|
// safely then so be it.
|
|
|
|
//
|
|
|
|
// The LOCATION property is particularly problematic. The CMake
|
|
|
|
// language has very loose restrictions on the names that will match
|
|
|
|
// a given source file (for historical reasons). Implementing
|
|
|
|
// lookups correctly with such loose naming requires the
|
|
|
|
// cmSourceFileLocation class to commit to a particular full path to
|
|
|
|
// the source file as late as possible. If the users requests the
|
|
|
|
// LOCATION property we must commit now.
|
|
|
|
if(strcmp(prop, "LOCATION") == 0)
|
|
|
|
{
|
|
|
|
// Commit to a location.
|
|
|
|
this->GetFullPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Perform the normal property lookup.
|
|
|
|
return this->GetProperty(prop);
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmSourceFile::GetProperty(const char* prop) const
|
2002-08-16 19:20:18 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
// Check for computed properties.
|
|
|
|
if(strcmp(prop, "LOCATION") == 0)
|
2006-03-22 22:06:52 +03:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
if(this->FullPath.empty())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return this->FullPath.c_str();
|
|
|
|
}
|
2006-03-22 22:06:52 +03:00
|
|
|
}
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
bool chain = false;
|
2006-12-13 20:19:59 +03:00
|
|
|
const char *retVal =
|
|
|
|
this->Properties.GetPropertyValue(prop, cmProperty::SOURCE_FILE, chain);
|
|
|
|
if (chain)
|
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
cmMakefile* mf = this->Location.GetMakefile();
|
|
|
|
return mf->GetProperty(prop,cmProperty::SOURCE_FILE);
|
2006-12-13 20:19:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return retVal;
|
2002-08-16 19:20:18 +04:00
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2002-08-16 19:20:18 +04:00
|
|
|
bool cmSourceFile::GetPropertyAsBool(const char* prop) const
|
|
|
|
{
|
2006-12-07 17:45:32 +03:00
|
|
|
return cmSystemTools::IsOn(this->GetProperty(prop));
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
2005-02-19 00:19:09 +03:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand* cmSourceFile::GetCustomCommand()
|
2005-04-14 00:35:26 +04:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
return this->CustomCommand;
|
2005-04-14 00:35:26 +04:00
|
|
|
}
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand const* cmSourceFile::GetCustomCommand() const
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
return this->CustomCommand;
|
2006-12-07 17:45:32 +03:00
|
|
|
}
|
|
|
|
|
2006-12-13 20:19:59 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2007-06-18 19:59:23 +04:00
|
|
|
void cmSourceFile::SetCustomCommand(cmCustomCommand* cc)
|
2006-12-13 20:19:59 +03:00
|
|
|
{
|
2007-06-18 19:59:23 +04:00
|
|
|
cmCustomCommand* old = this->CustomCommand;
|
|
|
|
this->CustomCommand = cc;
|
|
|
|
delete old;
|
2006-12-13 20:19:59 +03:00
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2006-12-07 17:45:32 +03:00
|
|
|
void cmSourceFile::DefineProperties(cmake *cm)
|
|
|
|
{
|
|
|
|
// define properties
|
|
|
|
cm->DefineProperty
|
|
|
|
("ABSTRACT", cmProperty::SOURCE_FILE,
|
|
|
|
"Is this source file an abstract class.",
|
2008-01-10 06:09:19 +03:00
|
|
|
"A property on a source file that indicates if the source file "
|
2006-12-07 17:45:32 +03:00
|
|
|
"represents a class that is abstract. This only makes sense for "
|
|
|
|
"languages that have a notion of an abstract class and it is "
|
2008-01-10 06:09:19 +03:00
|
|
|
"only used by some tools that wrap classes into other languages.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("COMPILE_FLAGS", cmProperty::SOURCE_FILE,
|
|
|
|
"Additional flags to be added when compiling this source file.",
|
|
|
|
"These flags will be added to the list of compile flags when "
|
2008-01-14 17:20:58 +03:00
|
|
|
"this source file builds. Use COMPILE_DEFINITIONS to pass additional "
|
|
|
|
"preprocessor definitions.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("COMPILE_DEFINITIONS", cmProperty::SOURCE_FILE,
|
2008-01-16 05:02:00 +03:00
|
|
|
"Preprocessor definitions for compiling a source file.",
|
2008-01-14 17:20:58 +03:00
|
|
|
"The COMPILE_DEFINITIONS property may be set to a list of preprocessor "
|
|
|
|
"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. "
|
|
|
|
"The VS6 IDE does not support definitions with values "
|
|
|
|
"(but NMake does). Xcode does not support per-configuration "
|
|
|
|
"definitions on source files.\n"
|
|
|
|
"Dislaimer: Most native build tools have poor support for escaping "
|
|
|
|
"certain values. CMake has work-arounds for many cases but some "
|
|
|
|
"values may just not be possible to pass correctly. If a value "
|
|
|
|
"does not seem to be escaped correctly, do not attempt to "
|
|
|
|
"work-around the problem by adding escape sequences to the value. "
|
|
|
|
"Your work-around may break in a future version of CMake that "
|
|
|
|
"has improved escape support. Instead consider defining the macro "
|
|
|
|
"in a (configured) header file. Then report the limitation.");
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2008-01-15 18:49:22 +03:00
|
|
|
|
|
|
|
cm->DefineProperty
|
2008-01-16 05:02:00 +03:00
|
|
|
("COMPILE_DEFINITIONS_<CONFIG>", cmProperty::SOURCE_FILE,
|
2008-01-15 18:49:22 +03:00
|
|
|
"Per-configuration preprocessor definitions on a source file.",
|
|
|
|
"This is the configuration-specific version of "
|
|
|
|
"COMPILE_DEFINITIONS. Note that Xcode does not support "
|
|
|
|
"per-configuration source file flags so this property will "
|
2008-01-16 05:02:00 +03:00
|
|
|
"be ignored by the Xcode generator.");
|
2008-01-15 18:49:22 +03:00
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("EXTERNAL_OBJECT", cmProperty::SOURCE_FILE,
|
|
|
|
"If set to true then this is an object file.",
|
|
|
|
"If this property is set to true then the source file "
|
|
|
|
"is really an object file and should not be compiled. "
|
|
|
|
"It will still be linked into the target though.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("EXTRA_CONTENT", cmProperty::SOURCE_FILE,
|
|
|
|
"Is this file part of a target's extra content.",
|
|
|
|
"If this property is set, the source file will be added to the "
|
|
|
|
"target's list of extra content. This is used by makefile "
|
|
|
|
"generators for some sort of Mac budle framework support.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("GENERATED", cmProperty::SOURCE_FILE,
|
|
|
|
"Is this source file generated as part of the build process.",
|
|
|
|
"If a source file is generated by the build process CMake will "
|
|
|
|
"handle it differently in temrs of dependency checking etc. "
|
|
|
|
"Otherwise having a non-existent source file could create problems.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("HEADER_FILE_ONLY", cmProperty::SOURCE_FILE,
|
|
|
|
"Is this source file only a header file.",
|
2008-01-10 06:09:19 +03:00
|
|
|
"A property on a source file that indicates if the source file "
|
2006-12-07 17:45:32 +03:00
|
|
|
"is a header file with no associated implementation. This is "
|
|
|
|
"set automatically based on the file extension and is used by "
|
|
|
|
"CMake to determine is certain dependency information should be "
|
|
|
|
"computed.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("KEEP_EXTENSION", cmProperty::SOURCE_FILE,
|
2008-01-10 06:09:19 +03:00
|
|
|
"Make the output file have the same extension as the source file.",
|
2006-12-07 17:45:32 +03:00
|
|
|
"If this property is set then the file extension of the output "
|
|
|
|
"file will be the same as that of the source file. Normally "
|
|
|
|
"the output file extension is computed based on the language "
|
|
|
|
"of the source file, for example .cxx will go to a .o extension.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("LANGUAGE", cmProperty::SOURCE_FILE,
|
|
|
|
"What programming language is the file.",
|
|
|
|
"A property that can be set to indicate what programming language "
|
|
|
|
"the source file is. If it is not set the language is determined "
|
|
|
|
"based on the file extension. Typical values are CXX C etc.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("LOCATION", cmProperty::SOURCE_FILE,
|
|
|
|
"The full path to a source file.",
|
|
|
|
"A read only property on a SOURCE FILE that contains the full path "
|
|
|
|
"to the source file.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("MACOSX_PACKAGE_LOCATION", cmProperty::SOURCE_FILE,
|
|
|
|
"Location for MACOSX bundles and frameworks.",
|
|
|
|
"MACOSX_PACKAGE_LOCATION is the property of a file within a mac osx "
|
|
|
|
"bundle or framework that specifies where this file should be "
|
|
|
|
"copied. This makes sense for things like icons and other "
|
|
|
|
"resources.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("MACOSX_CONTENT", cmProperty::SOURCE_FILE,
|
|
|
|
"If true then this is part of a MACOSX bundle or framework.",
|
|
|
|
"MACOSX_CONTENT is a flag that if true this file will be copied "
|
|
|
|
"to the bundle or framework.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("OBJECT_DEPENDS", cmProperty::SOURCE_FILE,
|
|
|
|
"Additional dependencies.",
|
|
|
|
"Additional dependencies that should be checked as part of "
|
|
|
|
"building this source file.");
|
|
|
|
|
2007-09-13 21:37:45 +04:00
|
|
|
cm->DefineProperty
|
|
|
|
("OBJECT_OUTPUTS", cmProperty::SOURCE_FILE,
|
|
|
|
"Additional outputs for a Makefile rule.",
|
|
|
|
"Additional outputs created by compilation of this source file. "
|
|
|
|
"If any of these outputs is missing the object will be recompiled. "
|
|
|
|
"This is supported only on Makefile generators and will be ignored "
|
|
|
|
"on other generators.");
|
|
|
|
|
2006-12-07 17:45:32 +03:00
|
|
|
cm->DefineProperty
|
|
|
|
("SYMBOLIC", cmProperty::SOURCE_FILE,
|
|
|
|
"Is this just a name for a rule.",
|
|
|
|
"If SYMBOLIC (boolean) is set to true the build system will be "
|
|
|
|
"informed that the source file is not actually created on disk but "
|
|
|
|
"instead used as a symbolic name for a build rule.");
|
|
|
|
|
|
|
|
cm->DefineProperty
|
|
|
|
("WRAP_EXCLUDE", cmProperty::SOURCE_FILE,
|
|
|
|
"Exclude this source file from any code wrapping techniques.",
|
|
|
|
"Some packages can wrap source files into alternate languages "
|
|
|
|
"to provide additional functionality. For example, C++ code "
|
|
|
|
"can be wrapped into Java or Python etc using SWIG etc. "
|
|
|
|
"If WRAP_EXCLUDE is set to true (1 etc) that indicates then "
|
|
|
|
"this source file should not be wrapped.");
|
|
|
|
}
|
|
|
|
|