mirror of
https://github.com/godotengine/godot.git
synced 2026-03-03 20:55:48 +00:00
Merge pull request #56047 from piiertho/feature/osx-sign-directory
This commit is contained in:
@@ -620,6 +620,14 @@ String EditorExportPlugin::get_ios_cpp_code() const {
|
||||
return ios_cpp_code;
|
||||
}
|
||||
|
||||
void EditorExportPlugin::add_osx_plugin_file(const String &p_path) {
|
||||
osx_plugin_files.push_back(p_path);
|
||||
}
|
||||
|
||||
const Vector<String> &EditorExportPlugin::get_osx_plugin_files() const {
|
||||
return osx_plugin_files;
|
||||
}
|
||||
|
||||
void EditorExportPlugin::add_ios_project_static_lib(const String &p_path) {
|
||||
ios_project_static_libs.push_back(p_path);
|
||||
}
|
||||
@@ -660,6 +668,7 @@ void EditorExportPlugin::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("add_ios_linker_flags", "flags"), &EditorExportPlugin::add_ios_linker_flags);
|
||||
ClassDB::bind_method(D_METHOD("add_ios_bundle_file", "path"), &EditorExportPlugin::add_ios_bundle_file);
|
||||
ClassDB::bind_method(D_METHOD("add_ios_cpp_code", "code"), &EditorExportPlugin::add_ios_cpp_code);
|
||||
ClassDB::bind_method(D_METHOD("add_osx_plugin_file", "path"), &EditorExportPlugin::add_osx_plugin_file);
|
||||
ClassDB::bind_method(D_METHOD("skip"), &EditorExportPlugin::skip);
|
||||
|
||||
GDVIRTUAL_BIND(_export_file, "path", "type", "features");
|
||||
|
||||
Reference in New Issue
Block a user