BUG: fix for bugs 125 - 128, and a fix for the bug introduced by the bug fix for but 92. & was being replaced with &, but after double quote was replaced with " causing it to be &quot. Also add more search paths for mpi
This commit is contained in:
parent
d0b3391642
commit
4a1412b0cb
|
@ -10,15 +10,20 @@ FIND_PATH(MPI_INCLUDE_PATH mpi.h
|
||||||
/usr/local/include
|
/usr/local/include
|
||||||
/usr/include
|
/usr/include
|
||||||
/usr/include/mpi
|
/usr/include/mpi
|
||||||
/usr/local/mpi/include)
|
/usr/local/mpi/include
|
||||||
|
"C:/Program Files/MPICH/SDK/Include"
|
||||||
|
)
|
||||||
|
|
||||||
FIND_LIBRARY(MPI_LIBRARY
|
FIND_LIBRARY(MPI_LIBRARY
|
||||||
NAMES mpi mpich
|
NAMES mpi mpich
|
||||||
PATHS /usr/lib /usr/local/lib /usr/local/mpi/lib)
|
PATHS /usr/lib /usr/local/lib /usr/local/mpi/lib
|
||||||
|
"C:/Program Files/MPICH/SDK/Lib"
|
||||||
|
)
|
||||||
|
|
||||||
FIND_LIBRARY(MPI_EXTRA_LIBRARY
|
FIND_LIBRARY(MPI_EXTRA_LIBRARY
|
||||||
NAMES mpi++
|
NAMES mpi++
|
||||||
PATHS /usr/lib /usr/local/lib /usr/local/mpi/lib
|
PATHS /usr/lib /usr/local/lib /usr/local/mpi/lib
|
||||||
|
"C:/Program Files/MPICH/SDK/Lib"
|
||||||
DOC "If a second mpi library is necessary, specify it here.")
|
DOC "If a second mpi library is necessary, specify it here.")
|
||||||
|
|
||||||
MARK_AS_ADVANCED(MPI_INCLUDE_PATH MPI_LIBRARY MPI_EXTRA_LIBRARY)
|
MARK_AS_ADVANCED(MPI_INCLUDE_PATH MPI_LIBRARY MPI_EXTRA_LIBRARY)
|
||||||
|
|
|
@ -1021,8 +1021,8 @@ void cmLocalVisualStudio7Generator::WriteVCProjFooter(std::ostream& fout)
|
||||||
std::string cmLocalVisualStudio7Generator::EscapeForXML(const char* s)
|
std::string cmLocalVisualStudio7Generator::EscapeForXML(const char* s)
|
||||||
{
|
{
|
||||||
std::string ret = s;
|
std::string ret = s;
|
||||||
cmSystemTools::ReplaceString(ret, "\"", """);
|
|
||||||
cmSystemTools::ReplaceString(ret, "&", "&");
|
cmSystemTools::ReplaceString(ret, "&", "&");
|
||||||
|
cmSystemTools::ReplaceString(ret, "\"", """);
|
||||||
cmSystemTools::ReplaceString(ret, "<", "<");
|
cmSystemTools::ReplaceString(ret, "<", "<");
|
||||||
cmSystemTools::ReplaceString(ret, ">", ">");
|
cmSystemTools::ReplaceString(ret, ">", ">");
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -1031,8 +1031,8 @@ std::string cmLocalVisualStudio7Generator::EscapeForXML(const char* s)
|
||||||
std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPath(const char* path)
|
std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPath(const char* path)
|
||||||
{
|
{
|
||||||
std::string ret = cmSystemTools::ConvertToOutputPath(path);
|
std::string ret = cmSystemTools::ConvertToOutputPath(path);
|
||||||
cmSystemTools::ReplaceString(ret, "\"", """);
|
|
||||||
cmSystemTools::ReplaceString(ret, "&", "&");
|
cmSystemTools::ReplaceString(ret, "&", "&");
|
||||||
|
cmSystemTools::ReplaceString(ret, "\"", """);
|
||||||
cmSystemTools::ReplaceString(ret, "<", "<");
|
cmSystemTools::ReplaceString(ret, "<", "<");
|
||||||
cmSystemTools::ReplaceString(ret, ">", ">");
|
cmSystemTools::ReplaceString(ret, ">", ">");
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue