summaryrefslogtreecommitdiffstats
path: root/Help/release/dev/vs7-OutputDirectory.rst
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-02-16 16:11:37 (GMT)
committerBrad King <brad.king@kitware.com>2015-02-16 16:48:04 (GMT)
commitaa2ba12164046cd1812c3f3b67cadca856d51846 (patch)
treeb6e09b9f2e0391d5865e9b4c3e38ae4a0ebff9c6 /Help/release/dev/vs7-OutputDirectory.rst
parentec1ec47193fcab7084e8edd977d3bebd1e8c73cb (diff)
downloadCMake-aa2ba12164046cd1812c3f3b67cadca856d51846.zip
CMake-aa2ba12164046cd1812c3f3b67cadca856d51846.tar.gz
CMake-aa2ba12164046cd1812c3f3b67cadca856d51846.tar.bz2
VS: Use $(ConfigurationName) as CMAKE_CFG_INTDIR in VS 7, 8, 9
This will allow us to use a value other than just the config name for the project OutputDirectory setting used for $(OutDir). Also use $(ConfigurationName) instead of $(OutDir) for the link directory configuration suffix since that is a hard-coded instance of a use case for CMAKE_CFG_INTDIR.
Diffstat (limited to 'Help/release/dev/vs7-OutputDirectory.rst')
-rw-r--r--Help/release/dev/vs7-OutputDirectory.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/Help/release/dev/vs7-OutputDirectory.rst b/Help/release/dev/vs7-OutputDirectory.rst
new file mode 100644
index 0000000..2725d0c
--- /dev/null
+++ b/Help/release/dev/vs7-OutputDirectory.rst
@@ -0,0 +1,10 @@
+vs7-OutputDirectory
+-------------------
+
+* The :variable:`CMAKE_CFG_INTDIR` variable value for Visual Studio
+ 7, 8, and 9 is now ``$(ConfigurationName)`` instead of ``$(OutDir)``.
+ This should have no effect on the intended use cases of the variable.
+
+* With Visual Studio 7, 8, and 9 generators the value of the ``$(OutDir)``
+ placeholder no longer evaluates to the configuration name. Projects
+ should use ``$(ConfigurationName)`` for that instead.