diff options
author | Phil Pritchett <p.pritchett@2d3.com> | 2001-11-02 16:19:15 (GMT) |
---|---|---|
committer | Phil Pritchett <p.pritchett@2d3.com> | 2001-11-02 16:19:15 (GMT) |
commit | 8c582aae126b8143fd22667893cc612664279275 (patch) | |
tree | eda28bef26b04a7aff6c9c13357d0a1373330fa4 /Source/cmDSWWriter.cxx | |
parent | 36e7b5567a6706623bf8b73a5bf9d8475ca7a8ce (diff) | |
download | CMake-8c582aae126b8143fd22667893cc612664279275.zip CMake-8c582aae126b8143fd22667893cc612664279275.tar.gz CMake-8c582aae126b8143fd22667893cc612664279275.tar.bz2 |
allow more than one external MS project
Diffstat (limited to 'Source/cmDSWWriter.cxx')
-rw-r--r-- | Source/cmDSWWriter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDSWWriter.cxx b/Source/cmDSWWriter.cxx index 07ad24d..d86ba2a 100644 --- a/Source/cmDSWWriter.cxx +++ b/Source/cmDSWWriter.cxx @@ -172,7 +172,7 @@ void cmDSWWriter::WriteDSWFile(std::ostream& fout) } } // Write the project into the DSW file - if (l->first == "INCLUDE_EXTERNAL_MSPROJECT") + if (l->first.compare(0,26, "INCLUDE_EXTERNAL_MSPROJECT") == 0) { cmCustomCommand cc = l->second.GetCustomCommands()[0]; |