diff options
author | Nils Gladitz <nilsgladitz@gmail.com> | 2014-07-24 20:18:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-31 13:17:53 (GMT) |
commit | f86850ef60b7dc008a144722bd0c803289a8ab76 (patch) | |
tree | d9fc952fe7e6dff216bf6bd24626bb3b5bf422fb /Help | |
parent | 028ad31878d25dad055ed9588d81568b284a272e (diff) | |
download | CMake-f86850ef60b7dc008a144722bd0c803289a8ab76.zip CMake-f86850ef60b7dc008a144722bd0c803289a8ab76.tar.gz CMake-f86850ef60b7dc008a144722bd0c803289a8ab76.tar.bz2 |
Genex: Implement generator expressions for target PDB files.
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``. |