Why CMake 2.4.1?  Are you stuck with that version for some reason?  Current
is CMake 2.4.6, and of course there's CMake CVS.  Does the problem exist for
either of those?

Cheers,
Brandon Van Every

On 5/9/07, Rob Mathews <[EMAIL PROTECTED]> wrote:

Title says it all. No way to pass a list of extra include directories to
the MIDL tool because CMake doesn't generate the
AdditionIncludeDirectories tag for the MIDL tool.

The fix is in cmLocalVisualStudio7Generator.cxx, lines 589, insert this
code:

  fout << "\t\t\t\tAdditionalIncludeDirectories=\"";
  for(i = includes.begin();i != includes.end(); ++i)
  {
          std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
          fout << ipath << ";";
  }


_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to