diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-15 16:22:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 16:22:11 +0100 |
commit | fa67046e983a137e612b00e3de1d445cc4aa24ce (patch) | |
tree | 32280e24a2957b4edf32157f40a43a602ff147fb /platform/osx/export/export_plugin.cpp | |
parent | 1d910b1e5868814938d644ff181cf30d75516762 (diff) | |
parent | 11572c6e309692b62554ae852dfa8fb8943bcbd7 (diff) |
Merge pull request #58136 from akien-mga/editor-includes-cleanup
Diffstat (limited to 'platform/osx/export/export_plugin.cpp')
-rw-r--r-- | platform/osx/export/export_plugin.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/platform/osx/export/export_plugin.cpp b/platform/osx/export/export_plugin.cpp index 4d5c0a827a..17861f24d2 100644 --- a/platform/osx/export/export_plugin.cpp +++ b/platform/osx/export/export_plugin.cpp @@ -28,11 +28,14 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#include "modules/modules_enabled.gen.h" // For regex. +#include "export_plugin.h" #include "codesign.h" + #include "editor/editor_node.h" -#include "export_plugin.h" +#include "editor/editor_paths.h" + +#include "modules/modules_enabled.gen.h" // For regex. void EditorExportPlatformOSX::get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) { if (p_preset->get("texture_format/s3tc")) { |