summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-08-19 14:10:50 +0200
committerGitHub <noreply@github.com>2020-08-19 14:10:50 +0200
commit5f6368278f5f46dee368558fc64277e2136177f4 (patch)
treea4cf25d81a02cbe6dc0b425186952456099118b0 /doc/classes
parent26eb4016a5779dd19f7556dd5d2af3b3b54185cb (diff)
parent1661309d5965e2c9910efa1ff88b2322aca832ed (diff)
Merge pull request #41080 from naithar/feature/ios-framework-import
[iOS] [4.0] Export: Add a method to embed a framework
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/EditorExportPlugin.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/classes/EditorExportPlugin.xml b/doc/classes/EditorExportPlugin.xml
index 8cfd3b63d6..6bcaabc39e 100644
--- a/doc/classes/EditorExportPlugin.xml
+++ b/doc/classes/EditorExportPlugin.xml
@@ -76,6 +76,18 @@
<argument index="0" name="path" type="String">
</argument>
<description>
+ Adds a static library (*.a) or dynamic library (*.dylib, *.framework) to Linking Phase in iOS's Xcode project.
+ </description>
+ </method>
+ <method name="add_ios_embedded_framework">
+ <return type="void">
+ </return>
+ <argument index="0" name="path" type="String">
+ </argument>
+ <description>
+ Adds a dynamic library (*.dylib, *.framework) to Linking Phase in iOS's Xcode project and embeds it into resulting binary.
+ [b]Note:[/b] For static libraries (*.a) works in same way as [code]add_ios_framework[/code].
+ This method should not be used for System libraries as they are already present on the device.
</description>
</method>
<method name="add_ios_linker_flags">