diff options
author | Brad King <brad.king@kitware.com> | 2009-07-08 17:04:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-07-08 17:04:04 (GMT) |
commit | 173448d9886deccb7cadd4fd0ffeaa236fa66e49 (patch) | |
tree | 12ef68b6607c5b223cd5e962d2e63d3ba8e68b69 /Source/cmTarget.h | |
parent | a3a046643aeb6244ac71a3cd645239099c6345f3 (diff) | |
download | CMake-173448d9886deccb7cadd4fd0ffeaa236fa66e49.zip CMake-173448d9886deccb7cadd4fd0ffeaa236fa66e49.tar.gz CMake-173448d9886deccb7cadd4fd0ffeaa236fa66e49.tar.bz2 |
ENH: Pass config to cmTarget::GetLinkerLanguage
This passes the build configuration to most GetLinkerLanguage calls. In
the future the linker language will account for targets linked in each
configuration.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 4ce6b30..63e8516 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -305,7 +305,7 @@ public: bool FindSourceFiles(); ///! Return the prefered linker language for this target - const char* GetLinkerLanguage(); + const char* GetLinkerLanguage(const char* config = 0); ///! Return the rule variable used to create this type of target, // need to add CMAKE_(LANG) for full name. |