[Cmake-commits] CMake branch, next, updated. v3.4.1-1934-g21bc95c
Brad King
brad.king at kitware.com
Tue Jan 12 14:10:43 EST 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 21bc95c2ff3b44500bc0bb2d777f1e4acb729676 (commit)
via fc5d6592291aaff7238b7625468f9820a596d758 (commit)
from 68881bfe2e9765bef47e25836b7c464b04696064 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=21bc95c2ff3b44500bc0bb2d777f1e4acb729676
commit 21bc95c2ff3b44500bc0bb2d777f1e4acb729676
Merge: 68881bf fc5d659
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Jan 12 14:10:42 2016 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Jan 12 14:10:42 2016 -0500
Merge topic 'vs-debug-fastlink' into next
fc5d6592 VS: Map link `/debug:fastlink` flag to VS 2015 IDE property (#15894)
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=fc5d6592291aaff7238b7625468f9820a596d758
commit fc5d6592291aaff7238b7625468f9820a596d758
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Jan 12 13:56:17 2016 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Tue Jan 12 13:59:59 2016 -0500
VS: Map link `/debug:fastlink` flag to VS 2015 IDE property (#15894)
Suggested-by: Thomas Laguzzi <tholag at gmail.com>
diff --git a/Help/release/dev/vs-debug-fastlink.rst b/Help/release/dev/vs-debug-fastlink.rst
new file mode 100644
index 0000000..c2e0599
--- /dev/null
+++ b/Help/release/dev/vs-debug-fastlink.rst
@@ -0,0 +1,5 @@
+vs-debug-fastlink
+-----------------
+
+* The :generator:`Visual Studio 14 2015` generator learned to map the
+ ``/debug:fastlink`` linker flag to the ``.vcxproj`` file property.
diff --git a/Source/cmVS14LinkFlagTable.h b/Source/cmVS14LinkFlagTable.h
index 1e781e8..29e3d86 100644
--- a/Source/cmVS14LinkFlagTable.h
+++ b/Source/cmVS14LinkFlagTable.h
@@ -177,6 +177,8 @@ static cmVS7FlagTable cmVS14LinkFlagTable[] =
{"UACUIAccess", "uiAccess='false'", "", "false", 0},
{"UACUIAccess", "uiAccess='true'", "", "true", 0},
{"ManifestEmbed", "manifest:embed", "", "true", 0},
+ {"GenerateDebugInformation", "DEBUG:FASTLINK", "", "DebugFastLink",
+ cmVS7FlagTable::CaseInsensitive},
{"GenerateDebugInformation", "DEBUG", "", "Debug",
cmVS7FlagTable::CaseInsensitive},
{"MapExports", "MAPINFO:EXPORTS", "", "true", 0},
-----------------------------------------------------------------------
Summary of changes:
Help/release/dev/vs-debug-fastlink.rst | 5 +++++
Source/cmVS14LinkFlagTable.h | 2 ++
2 files changed, 7 insertions(+)
create mode 100644 Help/release/dev/vs-debug-fastlink.rst
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list