Fixed typos
Multiple instances of "directory" were misspelled as "director". Fixed plural spellings.pull/30/head
parent
0081c3bb3a
commit
be14fd92ae
|
@ -2,7 +2,7 @@
|
||||||
C++ bindings for the Godot script API
|
C++ bindings for the Godot script API
|
||||||
|
|
||||||
# Creating a GDNative library (Linux)
|
# Creating a GDNative library (Linux)
|
||||||
Create a director named `SimpleLibrary` with subdirector `lib, src`
|
Create a directory named `SimpleLibrary` with subdirectories `lib, src`
|
||||||
|
|
||||||
Getting latest `cpp_bindings` and `godot_headers`
|
Getting latest `cpp_bindings` and `godot_headers`
|
||||||
```
|
```
|
||||||
|
@ -10,7 +10,7 @@ $ cd SimpleLibrary
|
||||||
$ git clone https://github.com/GodotNativeTools/cpp_bindings
|
$ git clone https://github.com/GodotNativeTools/cpp_bindings
|
||||||
$ git clone https://github.com/GodotNativeTools/godot_headers
|
$ git clone https://github.com/GodotNativeTools/godot_headers
|
||||||
```
|
```
|
||||||
right now our file structure should look like this
|
right now our directory structure should look like this
|
||||||
```
|
```
|
||||||
[SimpleLibrary]
|
[SimpleLibrary]
|
||||||
├── cpp_bindings/
|
├── cpp_bindings/
|
||||||
|
@ -36,12 +36,12 @@ Note:
|
||||||
Using `generate_bindings=yes` you can generate `godot_api.json` (Godot API)
|
Using `generate_bindings=yes` you can generate `godot_api.json` (Godot API)
|
||||||
Use `use_llvm=yes` to use clang++.
|
Use `use_llvm=yes` to use clang++.
|
||||||
|
|
||||||
Copy bindings librarys into `SimpleLibrary/lib` folder
|
Copy binding libraries into the `SimpleLibrary/lib` folder
|
||||||
```
|
```
|
||||||
$ cd ..
|
$ cd ..
|
||||||
$ cp cpp_bindings/bin/libgodot_cpp_bindings.a lib/
|
$ cp cpp_bindings/bin/libgodot_cpp_bindings.a lib/
|
||||||
```
|
```
|
||||||
And our file structure will be
|
And our directory structure will be
|
||||||
```
|
```
|
||||||
[SimpleLibrary]
|
[SimpleLibrary]
|
||||||
├── cpp_bindings/
|
├── cpp_bindings/
|
||||||
|
|
Loading…
Reference in New Issue