diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2000-08-31 18:15:58 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2000-08-31 18:15:58 (GMT) |
commit | 382b9d050887babdb0c838ab9085b7ebe9b5c13b (patch) | |
tree | f7e2d7ff83d6296b7abe619e75c9c63854aef292 /Source | |
parent | 3ded009f08c0d9785edb872fadf1b55798fd5df2 (diff) | |
download | CMake-382b9d050887babdb0c838ab9085b7ebe9b5c13b.zip CMake-382b9d050887babdb0c838ab9085b7ebe9b5c13b.tar.gz CMake-382b9d050887babdb0c838ab9085b7ebe9b5c13b.tar.bz2 |
BUG: fix name of command line version in dsp files
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CMakeSetup.dsw | 3 | ||||
-rw-r--r-- | Source/cmDSPMakefile.cxx | 2 | ||||
-rw-r--r-- | Source/cmDSPWriter.cxx | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/Source/CMakeSetup.dsw b/Source/CMakeSetup.dsw index a026cdb..e04ca61 100644 --- a/Source/CMakeSetup.dsw +++ b/Source/CMakeSetup.dsw @@ -14,6 +14,9 @@ Package=<4> Begin Project Dependency
Project_Dep_Name pcbuilderCMD
End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name CMakeSetupCMD
+ End Project Dependency
}}}
###############################################################################
diff --git a/Source/cmDSPMakefile.cxx b/Source/cmDSPMakefile.cxx index ab17add..f140f5e 100644 --- a/Source/cmDSPMakefile.cxx +++ b/Source/cmDSPMakefile.cxx @@ -128,7 +128,7 @@ void cmDSPMakefile::WriteDSPBuildRule(std::ostream& fout) makefileIn += "/"; makefileIn += "CMakeLists.txt"; std::string dsprule = GetHomeDirectory(); - dsprule += "/CMake/pcbuilderCMD "; + dsprule += "/CMake/Source/CMakeSetupCMD "; dsprule += makefileIn; dsprule += " -DSP -H"; dsprule += this->GetHomeDirectory(); diff --git a/Source/cmDSPWriter.cxx b/Source/cmDSPWriter.cxx index ab17add..f140f5e 100644 --- a/Source/cmDSPWriter.cxx +++ b/Source/cmDSPWriter.cxx @@ -128,7 +128,7 @@ void cmDSPMakefile::WriteDSPBuildRule(std::ostream& fout) makefileIn += "/"; makefileIn += "CMakeLists.txt"; std::string dsprule = GetHomeDirectory(); - dsprule += "/CMake/pcbuilderCMD "; + dsprule += "/CMake/Source/CMakeSetupCMD "; dsprule += makefileIn; dsprule += " -DSP -H"; dsprule += this->GetHomeDirectory(); |