diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-17 15:54:49 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-17 15:54:49 +0100 |
commit | e697774f61b05f0675a6a2a542ac9395096dc363 (patch) | |
tree | ed17cef1571e899d868c6d36a98ff3fbfda1b5c6 /platform/ios/export/export_plugin.h | |
parent | 2c5fa95aea28327ea7ce4bf17d863b85fc0c0729 (diff) | |
parent | 343bfb112f5a8cda4fdd86b0074bb2f54fd31e4b (diff) | |
download | redot-engine-e697774f61b05f0675a6a2a542ac9395096dc363.tar.gz |
Merge pull request #87823 from KoBeWi/ban_adb
Don't invoke adb with no runnable Android preset
Diffstat (limited to 'platform/ios/export/export_plugin.h')
-rw-r--r-- | platform/ios/export/export_plugin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/ios/export/export_plugin.h b/platform/ios/export/export_plugin.h index edbe566dab..197f27da76 100644 --- a/platform/ios/export/export_plugin.h +++ b/platform/ios/export/export_plugin.h @@ -81,9 +81,11 @@ class EditorExportPlatformIOS : public EditorExportPlatform { #ifdef MACOS_ENABLED Thread check_for_changes_thread; SafeFlag quit_request; + SafeFlag has_runnable_preset; static bool _check_xcode_install(); static void _check_for_changes_poll_thread(void *ud); + void _update_preset_status(); #endif typedef Error (*FileHandler)(String p_file, void *p_userdata); @@ -152,6 +154,8 @@ protected: virtual bool get_export_option_visibility(const EditorExportPreset *p_preset, const String &p_option) const override; virtual String get_export_option_warning(const EditorExportPreset *p_preset, const StringName &p_name) const override; + void _notification(int p_what); + public: virtual String get_name() const override { return "iOS"; } virtual String get_os_name() const override { return "iOS"; } |