Merge topic 'run-vim-spellcheck'
43d6011
Run vim spellcheck on some files
This commit is contained in:
commit
20446079ee
|
@ -27,7 +27,7 @@
|
|||
This file computes an ordered list of link items to use when linking a
|
||||
single target in one configuration. Each link item is identified by
|
||||
the string naming it. A graph of dependencies is created in which
|
||||
each node corresponds to one item and directed eges lead from nodes to
|
||||
each node corresponds to one item and directed edges lead from nodes to
|
||||
those which must *follow* them on the link line. For example, the
|
||||
graph
|
||||
|
||||
|
@ -42,7 +42,7 @@ search of the link dependencies starting from the main target.
|
|||
|
||||
There are two types of items: those with known direct dependencies and
|
||||
those without known dependencies. We will call the two types "known
|
||||
items" and "unknown items", respecitvely. Known items are those whose
|
||||
items" and "unknown items", respectively. Known items are those whose
|
||||
names correspond to targets (built or imported) and those for which an
|
||||
old-style <item>_LIB_DEPENDS variable is defined. All other items are
|
||||
unknown and we must infer dependencies for them. For items that look
|
||||
|
@ -150,7 +150,7 @@ times the component needs to be seen (once for trivial components,
|
|||
twice for non-trivial). If at any time another component finishes and
|
||||
re-adds an already pending component, the pending component is reset
|
||||
so that it needs to be seen in its entirety again. This ensures that
|
||||
all dependencies of a component are satisified no matter where it
|
||||
all dependencies of a component are satisfied no matter where it
|
||||
appears.
|
||||
|
||||
After the original link line has been completed, we append to it the
|
||||
|
|
|
@ -31,7 +31,7 @@ dependencies for each target such that no cycles are left and the
|
|||
build order is safe.
|
||||
|
||||
For most target types cyclic dependencies are not allowed. However
|
||||
STATIC libraries may depend on each other in a cyclic fasion. In
|
||||
STATIC libraries may depend on each other in a cyclic fashion. In
|
||||
general the directed dependency graph forms a directed-acyclic-graph
|
||||
of strongly connected components. All strongly connected components
|
||||
should consist of only STATIC_LIBRARY targets.
|
||||
|
|
|
@ -153,11 +153,11 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv)
|
|||
std::string ccFile = this->BinaryDirectory + "/CMakeCache.txt";
|
||||
cmSystemTools::RemoveFile(ccFile.c_str());
|
||||
|
||||
// we need to create a directory and CMakeList file etc...
|
||||
// we need to create a directory and CMakeLists file etc...
|
||||
// first create the directories
|
||||
sourceDirectory = this->BinaryDirectory.c_str();
|
||||
|
||||
// now create a CMakeList.txt file in that directory
|
||||
// now create a CMakeLists.txt file in that directory
|
||||
FILE *fout = fopen(outFileName.c_str(),"w");
|
||||
if (!fout)
|
||||
{
|
||||
|
|
|
@ -70,7 +70,7 @@ bool cmCreateTestSourceList
|
|||
if (cmSystemTools::GetFilenameExtension(*i).size() < 2)
|
||||
{
|
||||
this->SetError(
|
||||
"You must specify a file extenion for the test driver file.");
|
||||
"You must specify a file extension for the test driver file.");
|
||||
return false;
|
||||
}
|
||||
std::string driver = this->Makefile->GetCurrentOutputDirectory();
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
class cmDependsFortranSourceInfo
|
||||
{
|
||||
public:
|
||||
// The name of the soruce file.
|
||||
// The name of the source file.
|
||||
std::string Source;
|
||||
|
||||
// Set of provided and required modules.
|
||||
|
@ -810,8 +810,8 @@ bool cmDependsFortran::ModulesDiffer(const char* modFile,
|
|||
* -GNU
|
||||
* -Intel
|
||||
*
|
||||
* Eat the stream content until all recompile only realated changes
|
||||
* are left bedind.
|
||||
* Eat the stream content until all recompile only related changes
|
||||
* are left behind.
|
||||
*/
|
||||
if (strcmp(compilerId, "GNU") == 0 )
|
||||
{
|
||||
|
@ -852,7 +852,7 @@ bool cmDependsFortran::ModulesDiffer(const char* modFile,
|
|||
}
|
||||
}
|
||||
|
||||
// Compare the remainng content. If no compiler id matched above,
|
||||
// Compare the remaining content. If no compiler id matched above,
|
||||
// including the case none was given, this will compare the whole
|
||||
// content.
|
||||
if(!cmDependsFortranStreamsDiffer(finModFile, finStampFile))
|
||||
|
@ -1209,7 +1209,7 @@ void cmDependsFortranParser_RuleElif(cmDependsFortranParser* parser)
|
|||
* cmDependsFortranParser_RuleIf(..)
|
||||
*/
|
||||
|
||||
// Allways taken unless an #ifdef or #ifndef-branch has been taken
|
||||
// Always taken unless an #ifdef or #ifndef-branch has been taken
|
||||
// already. If the second condition isn't meet already
|
||||
// (parser->InPPFalseBranch == 0) correct it.
|
||||
if(!parser->SkipToEnd.empty() &&
|
||||
|
@ -1228,7 +1228,7 @@ void cmDependsFortranParser_RuleElse(cmDependsFortranParser* parser)
|
|||
return;
|
||||
}
|
||||
|
||||
// parser->InPPFalseBranch is either 0 or 1. We change it denpending on
|
||||
// parser->InPPFalseBranch is either 0 or 1. We change it depending on
|
||||
// parser->SkipToEnd.top()
|
||||
if(!parser->SkipToEnd.empty() &&
|
||||
parser->SkipToEnd.top())
|
||||
|
|
|
@ -131,7 +131,7 @@ void cmNeedBackwardsCompatibility(const std::string& variable,
|
|||
" that has not been defined. Some variables were always defined "
|
||||
"by CMake in versions prior to 1.6. To fix this you might need to set "
|
||||
"the cache value of CMAKE_BACKWARDS_COMPATIBILITY to 1.4 or less. If "
|
||||
"you are writing a CMakeList file, (or have already set "
|
||||
"you are writing a CMakeLists file, (or have already set "
|
||||
"CMAKE_BACKWARDS_COMPATABILITY to 1.4 or less) then you probably need "
|
||||
"to include a CMake module to test for the feature this variable "
|
||||
"defines.";
|
||||
|
@ -1433,7 +1433,7 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args)
|
|||
// Command to start progress for a build
|
||||
else if (args[1] == "cmake_progress_start" && args.size() == 4)
|
||||
{
|
||||
// bascially remove the directory
|
||||
// basically remove the directory
|
||||
std::string dirName = args[2];
|
||||
dirName += "/Progress";
|
||||
cmSystemTools::RemoveADirectory(dirName.c_str());
|
||||
|
@ -1930,7 +1930,7 @@ void cmake::SetGlobalGenerator(cmGlobalGenerator *gg)
|
|||
{
|
||||
delete this->GlobalGenerator;
|
||||
// restore the original environment variables CXX and CC
|
||||
// Restor CC
|
||||
// Restore CC
|
||||
std::string env = "CC=";
|
||||
if(this->CCEnvironment.size())
|
||||
{
|
||||
|
@ -2608,7 +2608,7 @@ int cmake::LoadCache()
|
|||
// could we not read the cache
|
||||
if (!this->CacheManager->LoadCache(this->GetHomeOutputDirectory()))
|
||||
{
|
||||
// if it does exist, but isn;t readable then warn the user
|
||||
// if it does exist, but isn't readable then warn the user
|
||||
std::string cacheFile = this->GetHomeOutputDirectory();
|
||||
cacheFile += "/CMakeCache.txt";
|
||||
if(cmSystemTools::FileExists(cacheFile.c_str()))
|
||||
|
@ -3369,19 +3369,21 @@ void cmake::DefineProperties(cmake *cm)
|
|||
cm->DefineProperty
|
||||
("ENABLED_FEATURES", cmProperty::GLOBAL,
|
||||
"List of features which are enabled during the CMake run.",
|
||||
"List of features which are enabled during the CMake run. Be default "
|
||||
"List of features which are enabled during the CMake run. By default "
|
||||
"it contains the names of all packages which were found. This is "
|
||||
"determined using the <NAME>_FOUND variables. Packages which are "
|
||||
"searched QUIET are not listed. A project can add its own features to "
|
||||
"this list.This property is used by the macros in FeatureSummary.cmake.");
|
||||
"this list. "
|
||||
"This property is used by the macros in FeatureSummary.cmake.");
|
||||
cm->DefineProperty
|
||||
("DISABLED_FEATURES", cmProperty::GLOBAL,
|
||||
"List of features which are disabled during the CMake run.",
|
||||
"List of features which are disabled during the CMake run. Be default "
|
||||
"List of features which are disabled during the CMake run. By default "
|
||||
"it contains the names of all packages which were not found. This is "
|
||||
"determined using the <NAME>_FOUND variables. Packages which are "
|
||||
"searched QUIET are not listed. A project can add its own features to "
|
||||
"this list.This property is used by the macros in FeatureSummary.cmake.");
|
||||
"this list. "
|
||||
"This property is used by the macros in FeatureSummary.cmake.");
|
||||
cm->DefineProperty
|
||||
("PACKAGES_FOUND", cmProperty::GLOBAL,
|
||||
"List of packages which were found during the CMake run.",
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
// This is a wrapper program for xcodebuild
|
||||
// it calls xcodebuild, and does two things
|
||||
// it removes much of the output, all the setevn
|
||||
// it removes much of the output, all the setenv
|
||||
// stuff. Also, it checks for the text file busy
|
||||
// error, and re-runs xcodebuild until that error does
|
||||
// not show up.
|
||||
|
|
Loading…
Reference in New Issue