VS: Change Nsight Tegra 2.0 Project Revision Number from 8 to 9
A hotfix to Nsight Tegra 2.0 needed to increase the project number. Teach CMake to generate the newer number for this version.
This commit is contained in:
parent
54ff77dc62
commit
bb3c87f1da
|
@ -326,9 +326,9 @@ void cmVisualStudio10TargetGenerator::Generate()
|
||||||
this->WriteString("<PropertyGroup Label=\"NsightTegraProject\">\n", 1);
|
this->WriteString("<PropertyGroup Label=\"NsightTegraProject\">\n", 1);
|
||||||
if(this->NsightTegraVersion[0] >= 2)
|
if(this->NsightTegraVersion[0] >= 2)
|
||||||
{
|
{
|
||||||
// Nsight Tegra 2.0 uses project revision 8.
|
// Nsight Tegra 2.0 uses project revision 9.
|
||||||
this->WriteString("<NsightTegraProjectRevisionNumber>"
|
this->WriteString("<NsightTegraProjectRevisionNumber>"
|
||||||
"8"
|
"9"
|
||||||
"</NsightTegraProjectRevisionNumber>\n", 2);
|
"</NsightTegraProjectRevisionNumber>\n", 2);
|
||||||
// Tell newer versions to upgrade silently when loading.
|
// Tell newer versions to upgrade silently when loading.
|
||||||
this->WriteString("<NsightTegraUpgradeOnceWithoutPrompt>"
|
this->WriteString("<NsightTegraUpgradeOnceWithoutPrompt>"
|
||||||
|
|
Loading…
Reference in New Issue