diff options
author | Brad King <brad.king@kitware.com> | 2010-05-28 14:45:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-05-28 15:09:10 (GMT) |
commit | fe971d97cae4df94d3643c5203b79336cfd31e05 (patch) | |
tree | 2eac2264fe3b44bd915535ba081c2e119999818b /Source/cmTarget.cxx | |
parent | d3303dbc8130988be63b9dda913eb9af9770edeb (diff) | |
download | CMake-fe971d97cae4df94d3643c5203b79336cfd31e05.zip CMake-fe971d97cae4df94d3643c5203b79336cfd31e05.tar.gz CMake-fe971d97cae4df94d3643c5203b79336cfd31e05.tar.bz2 |
Add STATIC_LIBRARY_FLAGS_<CONFIG> property (#10768)
This is a per-configuration version of STATIC_LIBRARY_FLAGS.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 54b1815..45ba358 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -708,6 +708,11 @@ void cmTarget::DefineProperties(cmake *cm) "Extra flags to use when linking a static library."); cm->DefineProperty + ("STATIC_LIBRARY_FLAGS_<CONFIG>", cmProperty::TARGET, + "Per-configuration flags for creating a static library.", + "This is the configuration-specific version of STATIC_LIBRARY_FLAGS."); + + cm->DefineProperty ("SUFFIX", cmProperty::TARGET, "What comes after the library name.", "A target property that can be set to override the suffix " |