diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-07-26 20:59:55 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-07-26 20:59:55 (GMT) |
commit | c8101e8e4706445b172a1a5ed0f2fd6960522a18 (patch) | |
tree | a4131f4a20fad9bcb44e17f0658588f14a22d48e /Source/cmTarget.cxx | |
parent | 983919f5f3b71ef5053f8a0bf6010c3b3fce8d61 (diff) | |
download | CMake-c8101e8e4706445b172a1a5ed0f2fd6960522a18.zip CMake-c8101e8e4706445b172a1a5ed0f2fd6960522a18.tar.gz CMake-c8101e8e4706445b172a1a5ed0f2fd6960522a18.tar.bz2 |
BUG: fix for bug 998, fix spelling errors
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 7b7db49..f914094 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -67,7 +67,7 @@ void cmTarget::TraceVSDependencies(std::string projFile, for(std::vector<std::string>::iterator id = depends.begin(); id != depends.end(); ++id) { - // if there is a cutom rule to generate that dependency + // if there is a custom rule to generate that dependency // then add it to the list cmSourceFile* outsf = makefile->GetSourceFileWithOutput(id->c_str()); @@ -107,7 +107,7 @@ void cmTarget::TraceVSDependencies(std::string projFile, // add in the project file itself srcFilesToProcess.push(projFile); srcFilesQueued.insert(projFile); - // add in the library depends for cusotm targets + // add in the library depends for custom targets if (this->GetType() == cmTarget::UTILITY) { for (std::vector<cmCustomCommand>::iterator ic = |