diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-06-17 18:48:49 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2020-06-18 19:35:26 (GMT) |
commit | bbcaf9689ea76d8deba13870dfc63f0654348b5a (patch) | |
tree | dee3895c9ee330b5329ef560617e765aa297bab2 /Source/cmTarget.h | |
parent | 14456923bd79b5353cf8be49855ac01826d89b70 (diff) | |
download | CMake-bbcaf9689ea76d8deba13870dfc63f0654348b5a.zip CMake-bbcaf9689ea76d8deba13870dfc63f0654348b5a.tar.gz CMake-bbcaf9689ea76d8deba13870dfc63f0654348b5a.tar.bz2 |
Refactor: Add IsAndroidGuiExecutable() method to cmTarget
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index f0ddb68..e7498bd 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -209,6 +209,9 @@ public: //! Return whether this target is an executable Bundle on Apple. bool IsAppBundleOnApple() const; + //! Return whether this target is a GUI executable on Android. + bool IsAndroidGuiExecutable() const; + //! Get a backtrace from the creation of the target. cmListFileBacktrace const& GetBacktrace() const; |