Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Integrate `.pre-commit-config.yaml` | Thaddeus Crews | 2024-06-24 | 1 | -7/+2 |
| | |||||
* | Merge pull request #1220 from adamscott/add-local-custom-support-redux | David Snopek | 2023-09-21 | 1 | -0/+4 |
|\ | | | | | Add support to import custom variables from parent SConstruct (redux) | ||||
| * | Add support to import custom variables from parent SConstruct (redux) | Adam Scott | 2023-09-04 | 1 | -0/+4 |
| | | |||||
* | | [SCons] Fixed crashes in several scripts | DmitriySalnikov | 2023-09-09 | 1 | -1/+0 |
|/ | |||||
* | [SCons] Move the GodotCPP build to its own tool. | Fabio Alessandrelli | 2023-08-29 | 1 | -276/+6 |
| | |||||
* | [SCons] Add option to generate a compilation database. | Fabio Alessandrelli | 2023-07-22 | 1 | -6/+33 |
| | |||||
* | Import `env` if possible | Adam Scott | 2023-07-11 | 1 | -20/+54 |
| | | | | | | | | | | This PR make it possible to import `env` and use it instead of creating one from scratch every time. Handy because we encourage users to use the godot-cpp SConstruct file as a base to their projects (see the test project). So, if a project want to override specific settings, (eg. make a path local to their SConstruct file, not local to the godot-cpp/SConstruct file), it can do so. | ||||
* | Prepend PATH to scons env | Trey Moller | 2023-06-14 | 1 | -0/+1 |
| | |||||
* | Merge pull request #988 from rburing/precision=double | Rémi Verschelde | 2023-01-10 | 1 | -3/+3 |
|\ | | | | | Rename `float=64` build option to `precision=double` | ||||
| * | Rename float=64 build option to precision=double | Ricardo Buring | 2023-01-09 | 1 | -3/+3 |
| | | | | | | | | | | This makes the build system consistent with Godot again. Also fix CMake build to define REAL_T_IS_DOUBLE when precision=double. | ||||
* | | [SCons] Fix custom API file/dir relative paths. | Fabio Alessandrelli | 2023-01-09 | 1 | -12/+29 |
|/ | |||||
* | [SCons] Platform agnostic default toolchain (GNU). | Fabio Alessandrelli | 2022-12-20 | 1 | -1/+3 |
| | | | | | | | Create the SCons Environment with an empty PLATFORM variable to force the default tools to use the GNU toolchain. Platform specific toolchains are then setup in our custom tools. | ||||
* | Rename godot-headers to gdextension, move header to top folder | Rémi Verschelde | 2022-12-14 | 1 | -5/+15 |
| | | | | | | | | Changes the `<godot/gdextension_interface.h>` include to simply `<gdextension_interface.h>`. Refactor and better document the SCons and CMake logic around setting the paths to the header and API JSON file. | ||||
* | Rename GDNative to GDExtension | Gilles Roudière | 2022-12-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | Non-exhaustive list of case-sensitive renames: GDExtension -> GDNative GDNATIVE -> GDEXTENSION gdextension -> gdnative ExtensionExtension -> Extension (for where there was GDNativeExtension) EXTENSION_EXTENSION -> EXTENSION (for where there was GDNATIVE_EXTENSION) gdnlib -> gdextension gdn_interface -> gde_interface gdni -> gde_interface | ||||
* | [SCons] Refactor targets, symbols, optimizations. | Fabio Alessandrelli | 2022-10-04 | 1 | -11/+28 |
| | | | | | | | | | Now matches Godot `master` target names and supports the same flags with the following notable exceptions: - The default target is "template_debug", since it's compatible with editor builds (and TOOLS_ENABLED is never used internally). - separate_debug_symbols is still not supported, and will be done in a separate commit. | ||||
* | Merge pull request #835 from Faless/build/4.x_opt_debug | Rémi Verschelde | 2022-09-19 | 1 | -0/+5 |
|\ | |||||
| * | [SCons] Add "optimize" and "debug_symbols" options | Fabio Alessandrelli | 2022-09-12 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | optimize = auto|none|debug|speed|size|0|1|2|3 debug_symbol = True|False optimize == "auto" will produce: - "debug" for "debug" builds - "speed" for "release" builds | ||||
* | | Add options to use scons caching for faster iteration. | Emilien Bauer | 2022-09-19 | 1 | -1/+8 |
|/ | | | | Sort the sets in source generation so they are generated consistently between runs; otherwise caching is useless. | ||||
* | Rename OSX to macOS. | bruvzg | 2022-07-20 | 1 | -3/+3 |
| | |||||
* | SCons: Default `num_jobs` to max CPUs minus 1 if not specified | Rémi Verschelde | 2022-07-17 | 1 | -0/+18 |
| | | | | | | | | | | | | | This doesn't change the behavior when `--jobs`/`-j` is specified as a command-line argument or in `SCONSFLAGS`. The SCons hack used to know if `num_jobs` was set by the user is derived from the MongoDB setup. We use `os.cpu_count()` for portability (available since Python 3.4). With 4 CPUs or less, we use the max. With more than 4 we use max - 1 to preserve some bandwidth for the user's other programs. | ||||
* | [SCons] Fix msvc, linux-clang, add version check. | Fabio Alessandrelli | 2022-07-04 | 1 | -0/+2 |
| | |||||
* | [SCons] Move toolchains logic to tools folder. | Fabio Alessandrelli | 2022-06-27 | 1 | -393/+24 |
| | |||||
* | [SCons] Fix Android builds with modern NDKs. | Fabio Alessandrelli | 2022-06-15 | 1 | -5/+5 |
| | |||||
* | Unify bits, android_arch, macos_arch ios_arch into arch, support non-x86 | Aaron Franke | 2022-06-01 | 1 | -49/+102 |
| | | | | Unify arguments and add support for ARM64 and RV64 Linux | ||||
* | Merge pull request #746 from NicholasShatokhin/master | Fabio Alessandrelli | 2022-05-04 | 1 | -1/+6 |
|\ | | | | | Build javascript target on windows host | ||||
| * | Build javascript target on windows host | Mykola Shatokhin | 2022-05-01 | 1 | -1/+6 |
| | | |||||
* | | Add double precision build support. | bruvzg | 2022-05-04 | 1 | -0/+4 |
| | | |||||
* | | [Scons] Use builder to track bindings regeneration. | Fabio Alessandrelli | 2022-05-03 | 1 | -29/+13 |
| | | | | | | | | | | | | | | | | Using a scons Builder we now regenerate the bindings automatically when the Godot API json or header has changed. The option to force bindings regeneration (generate_bindings=yes) is retained. | ||||
* | | [CI] Add python file format to static checks. | Fabio Alessandrelli | 2022-05-02 | 1 | -1/+1 |
|/ | | | | Uses the same version of `black` as godot. | ||||
* | [master] Run black format on SConstruct files and bindings generator | Aaron Franke | 2022-02-26 | 1 | -2/+1 |
| | |||||
* | Use C++17 flag only for C++ files. | bruvzg | 2022-02-16 | 1 | -2/+2 |
| | |||||
* | [macOS] Restore demo library output names. | bruvzg | 2022-02-14 | 1 | -21/+22 |
| | |||||
* | [Build] Fix exposed suffix, remove unused option. | Fabio Alessandrelli | 2022-02-10 | 1 | -3/+3 |
| | |||||
* | Library SCons boilerplate to build projects. | Fabio Alessandrelli | 2022-02-10 | 1 | -8/+26 |
| | | | | | | | | | | | | | | Works by executing project `SConstruct`s file in a cloned env (a bit like Godot does for modules) so you don't have to worry about platform and toolchain setup. Convert the project test file to work as submodule, add it to CI Run with: ``` scons build_projects=test,/path/to/other/project ``` | ||||
* | Always require C++17. Shuold fix other platforms. | Fabio Alessandrelli | 2022-02-10 | 1 | -6/+13 |
| | |||||
* | Make extension instances create the corresponding godot object in their ↵ | Gilles Roudière | 2021-12-03 | 1 | -0/+1 |
| | | | | constructor | ||||
* | Print a warning with unknown SCons variables to ease troubleshooting | Hugo Locurcio | 2021-11-23 | 1 | -0/+7 |
| | |||||
* | [OSX] Add universal build support. | Fabio Alessandrelli | 2021-09-29 | 1 | -7/+14 |
| | |||||
* | Changed over to proper godot-headers | Bastiaan Olij | 2021-09-27 | 1 | -1/+1 |
| | |||||
* | Added TYPED_METHOD_BIND and c++17 flags to windows build and moved test ↵ | Bastiaan Olij | 2021-09-27 | 1 | -0/+1 |
| | | | | project files | ||||
* | Fix issues with method calls | George Marques | 2021-09-27 | 1 | -5/+9 |
| | |||||
* | Replace bindgins to work with extensions | George Marques | 2021-09-27 | 1 | -318/+291 |
| | |||||
* | Merge pull request #547 from ↵ | Rémi Verschelde | 2021-09-27 | 1 | -2/+6 |
|\ | | | | | | | piiertho/hotfix/add-android-missing-toolchain-elements | ||||
| * | Fix: add missing toolchain elements for android | Pierre-Thomas Meisels | 2021-04-25 | 1 | -2/+6 |
| | | |||||
* | | Fix OSX library name for arm64. | Fabio Alessandrelli | 2021-07-10 | 1 | -2/+5 |
| | | | | | | | | Was always `.64`, it's now `.arm64` for M1. | ||||
* | | Merge pull request #584 from Faless/build/osx_arm64 | Fabio Alessandrelli | 2021-07-09 | 1 | -2/+18 |
|\ \ | | | | | | | Add OSX arm64 build target. | ||||
| * | | Add OSX arm64 build target. | Fabio Alessandrelli | 2021-07-07 | 1 | -2/+18 |
| |/ | | | | | | | | | New "macos_arch" to specify the desired arch, and "macos_sdk_path" to override the default SDK path. | ||||
* | | Merge pull request #581 from Faless/build/optimization_flags | Fabio Alessandrelli | 2021-07-09 | 1 | -0/+10 |
|\ \ | | | | | | | Add optimization flags for android and javascript. | ||||
| * | | Add optimization flags for android and javascript. | Fabio Alessandrelli | 2021-07-05 | 1 | -0/+10 |
| |/ | |||||
* / | Fix JavaScript library suffix. | Fabio Alessandrelli | 2021-07-05 | 1 | -1/+1 |
|/ | | | | Also add `.bc` files to `.gitignore` |