diff options
author | Sergey Minakov <naithar@icloud.com> | 2020-08-05 20:55:29 +0300 |
---|---|---|
committer | Sergey Minakov <naithar@icloud.com> | 2020-08-19 14:35:54 +0300 |
commit | 1661309d5965e2c9910efa1ff88b2322aca832ed (patch) | |
tree | 7978004531190af56fb6dab32f7853caf5d2f719 /doc/classes | |
parent | 6831da630f5609e1b659d65425d9da07e25df616 (diff) |
iOS Export: Add a method to embed a framework
By default 'add_ios_framework' would not embed a framework to save previous behavior.
New 'add_ios_embedded_framework' would embed framework on export.
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/EditorExportPlugin.xml | 12 |
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"> |