Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/src/doc/advanced/1-compiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ Sconstruct.
In order to compile you should run `scons` command, as for all gdextension projects.

```
scons platform=<macos|linux|windows|ios|android> target=<editor|template_debug|template_release> debug_symbols<yes|no> --jobs=<desired number of threads>
scons platform=<macos|linux|windows|ios|android> target=<editor|template_debug|template_release> --jobs=<desired number of threads>
```

If `target` is `editor` or `template_debug`, debug symbols will be generated.

### Additional Instructions

On Windows, you need to pass the `arch` argument with values `x86_64` or `x86_32`.
Expand All @@ -47,4 +49,4 @@ You can also specify the FMOD directory as an argument, so you don't need to pla
Example:
```
scons platform=windows arch=x86_64 target=editor fmod_lib_dir=libs/
```
```
Loading