Hi David, Hi Bill
The GUID ist part of the vcproj by design. Of course we can use 2.8.7 to
fix that problem. But in my eyes it would make sense to fix that problem
in future releases of cmake.
It's just changing
if(this->Version >= VS8)
into
if(this->Version >= VS7)
Thus: it's not a s
On 9/4/2012 2:53 PM, David Cole wrote:
The value of "this->Version" used to be "71" for Visual Studio 7.1,
and the ProjectGUID chunk was unintentionally generated since 71 > 8.
When the version number values were fixed so that this->Version could
properly be compared, this code started having its
This appears to be due to this change:
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1be4b6f4
which was made in November, 2011 and first appeared in CMake 2.8.7.
Specifically, this chunk:
- if(this->Version >= 8)
+ if(this->Version >= VS8)
{
fout << "\tProjectGUID=\"{" << gg
We used CMake 2.8.3 and 2.8.5. But since 2.8.9 the ProjectGUID is
missing in the generated vcproj files (VS 2003 .NET).
We only have problems with some postbuild tools that are searching for
that GUID inside the project file. The GUID ist still inside the sln and
inside the VS 2008, 2010 and "20
We did not change anything related to that in 2.8.9 to the best of my
knowledge...
What problem do you have now that you didn't have before?
(Can I reproduce your problem here...?)
Thanks,
David
On Tue, Sep 4, 2012 at 3:46 AM, Sören Textor wrote:
> Hi
> What's the reason to neglect the Proje
Hi
What's the reason to neglect the ProjectGUID entry inside the generated
vcproj-file at the VS .Net 2003 configuration since 2.8.9?
Best regards
SirAnn
--
Powered by www.kitware.com
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
Please ke