diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-08-19 20:41:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-08-21 13:17:27 (GMT) |
commit | 3ef0c40962312a97d5a083c79ec563045fe28de3 (patch) | |
tree | 1b6231bd299e24a59ab83e8af875d77a1e287ba3 /Source/cmGeneratorTarget.h | |
parent | 8de3a25ec34c4b2d3cd7e519d3c3607e81de34c4 (diff) | |
download | CMake-3ef0c40962312a97d5a083c79ec563045fe28de3.zip CMake-3ef0c40962312a97d5a083c79ec563045fe28de3.tar.gz CMake-3ef0c40962312a97d5a083c79ec563045fe28de3.tar.bz2 |
WIN32_EXECUTABLE: Add support for generator expressions
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 69c5faf..544b27a 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -284,6 +284,9 @@ public: or CFBundle on Apple. */ bool IsBundleOnApple() const; + /** Return whether this target is a Win32 executable */ + bool IsWin32Executable(const std::string& config) const; + /** Get the full name of the target according to the settings in its makefile. */ std::string GetFullName(const std::string& config, |