diff options
author | Brad King <brad.king@kitware.com> | 2014-07-31 13:17:35 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-07-31 13:17:35 (GMT) |
commit | 9f575a26fd7019114687104c719b20ef6d26b1fe (patch) | |
tree | 9e17ea0a31309c933c402d82515b43ca13a10133 /Help | |
parent | 202b7d12eb0609f1a2dd7f587c0ed17d45bec1c5 (diff) | |
parent | f86850ef60b7dc008a144722bd0c803289a8ab76 (diff) | |
download | CMake-9f575a26fd7019114687104c719b20ef6d26b1fe.zip CMake-9f575a26fd7019114687104c719b20ef6d26b1fe.tar.gz CMake-9f575a26fd7019114687104c719b20ef6d26b1fe.tar.bz2 |
Merge topic 'pdb-genex'
f86850ef Genex: Implement generator expressions for target PDB files.
028ad318 Genex: Simplify filesytem artifact code
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-generator-expressions.7.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst index bc24798..77259a0 100644 --- a/Help/manual/cmake-generator-expressions.7.rst +++ b/Help/manual/cmake-generator-expressions.7.rst @@ -148,6 +148,17 @@ than 4.2.0. Name of file with soname (.so.3). ``$<TARGET_SONAME_FILE_DIR:tgt>`` Directory of with soname (.so.3). +``$<TARGET_PDB_FILE:tgt>`` + Full path to the linker generated program database file (.pdb) + where ``tgt`` is the name of a target. + + See also the :prop_tgt:`PDB_NAME` and :prop_tgt:`PDB_OUTPUT_DIRECTORY` + target properties and their configuration specific variants + :prop_tgt:`PDB_NAME_<CONFIG>` and :prop_tgt:`PDB_OUTPUT_DIRECTORY_<CONFIG>`. +``$<TARGET_PDB_FILE_NAME:tgt>`` + Name of the linker generated program database file (.pdb). +``$<TARGET_PDB_FILE_DIR:tgt>`` + Directory of the linker generated program database file (.pdb). ``$<TARGET_PROPERTY:tgt,prop>`` Value of the property ``prop`` on the target ``tgt``. |