diff options
author | Tobias Hunger <tobias.hunger@qt.io> | 2016-06-08 11:23:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-06-10 13:24:49 (GMT) |
commit | f62ed322dc0d859f595be5ddeff40904ee478f50 (patch) | |
tree | 454be55cfcb19e1775cabc0786020e5ec7298260 /Source/cmLocalGenerator.h | |
parent | 853b1bb4ba176e886e3682a2475f1de1932ee890 (diff) | |
download | CMake-f62ed322dc0d859f595be5ddeff40904ee478f50.zip CMake-f62ed322dc0d859f595be5ddeff40904ee478f50.tar.gz CMake-f62ed322dc0d859f595be5ddeff40904ee478f50.tar.bz2 |
cmLocalGenerator: Add GetTargetDefines to get all defines for a target
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index ad77c1f..55b8794 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -314,6 +314,9 @@ public: std::string& flags, std::string& linkFlags, std::string& frameworkPath, std::string& linkPath, cmGeneratorTarget* target, bool useWatcomQuote); + void GetTargetDefines(cmGeneratorTarget const* target, + std::string const& config, std::string const& lang, + std::set<std::string>& defines) const; std::string GetFrameworkFlags(std::string const& l, std::string const& config, |