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/cmDSPWriter.cxx | |
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/cmDSPWriter.cxx')
-rw-r--r-- | Source/cmDSPWriter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |