blob: c7bd3aaead2a83db2f050e78755855395f58c109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
## Hello GDExtension plugin
Showcase how to build a Godot Android GDExtension plugin
### Setup
Clone the project using `git`:
```
git clone https://github.com/m4gr3d/Godot-Android-Samples.git
```
The sample has a dependency on the `godot-cpp` library, which is included as a Git submodule.
After cloning the sample, you'll need to execute the following commands to set up the submodule:
```
cd Godot-Android-Samples
git submodule update --init
```
### Building the C++ bindings
To generate and compile the C++ bindings, use the following commands:
```
cd Godot-Android-Samples/plugins/hello_gdextension/godot-cpp
scons platform=android -j4 target=template_debug
scons platform=android -j4 target=template_release
```
When it's completed, you should have static libraries stored in
`plugins/hello_gdextension/godot-cpp/bin/` that will be used for
compilation by the plugin.
### Building the Hello GDExtension plugin
Use the following commands to build the plugin:
```
cd Godot-Android-Samples
./gradlew :plugins:hello_gdextension:assemble
```
The generated artifact can be found under [`demo/addons`](demo/addons).
### Usage
Open the [`demo`](demo) project in the Godot Editor
**Note:**
It's recommended to generate a version of the gdextension binary for the platform you're running
the Godot Editor onto. To do so:
```
cd Godot-Android-Samples/plugins/hello_gdextension
scons -j4
```
Update [`src/main/assets/addons/hello_gdextension_plugin/hello_gdextension.gdextension`](src/main/assets/addons/hello_gdextension_plugin/hello_gdextension.gdextension)
with the path to the generated binary.
|