mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 05:11:15 -06:00
Fix VS 10 value of CMAKE_CFG_INTDIR
VS 10 provides $(Configuration) and $(ConfigurationName) but only the former is documented so we prefer it. This also makes CMAKE_CFG_INTDIR consistent with its documentation. See issue #9916.
This commit is contained in:
@@ -67,7 +67,7 @@ public:
|
||||
*/
|
||||
virtual std::string GetUserMacrosRegKeyBase();
|
||||
virtual const char* GetCMakeCFGInitDirectory()
|
||||
{ return "$(ConfigurationName)";}
|
||||
{ return "$(Configuration)";}
|
||||
protected:
|
||||
virtual const char* GetIDEVersion() { return "10.0"; }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user