summaryrefslogtreecommitdiffstats
path: root/SConstruct
Commit message (Collapse)AuthorAgeFilesLines
...
* Add JavaScript platform support (emcc, wasm).Fabio Alessandrelli2021-03-111-1/+31
| | | | | Includes update to `README.md` with instructions on how to build a GDNative library for webassembly.
* Merge pull request #517 from SeleDreams/masterGeorge Marques2021-03-011-5/+7
|\ | | | | Added freebsd specific configuration to SConstruct
| * Added freebsd specific configuration to fix issues of detection on freebsdSeleDreams2021-02-211-5/+7
| |
* | Merge pull request #507 from Zylann/bindings_auto_genGeorge Marques2021-03-011-3/+11
|\ \ | | | | | | Generate bindings if they are not found
| * | Generate bindings if they are not foundMarc Gilleron2021-02-031-3/+11
| |/
* / Rename godot_headers to godot-headers to match upstream renameRémi Verschelde2021-02-261-1/+1
|/ | | | Also updated the URLs which were still pointing to the old GitHub org.
* Merge pull request #505 from naithar/fix/ios-simulator-buildMarc2021-02-031-1/+7
|\ | | | | iOS arm64 simulator support.
| * add ios_simulator flag to enable building for M1 arm64 simulatorsSergey Minakov2021-02-031-1/+7
| |
* | Dont carry msvc stuff to the MinGW buildMarc Gilleron2021-01-311-2/+11
|/
* Add macos_deployment_target SConstruct option.Colugo2020-12-031-0/+9
|
* Don't generate debugging symbols in release buildsMarc Gilleron2020-09-051-7/+9
|
* Merge pull request #450 from proxemy/masterMarc2020-08-301-1/+1
|\ | | | | Bugfix. Project generation now respects the given 'headers_dir' start…
| * Bugfix. Project generation now respects the given 'headers_dir' start parameter.proxemy2020-08-271-1/+1
| |
* | Merge pull request #382 from Zylann/fix_sconstruct_default_bitsMarc2020-08-301-15/+13
|\ \ | |/ |/| Fix default value of `bits` misnaming resulting library
| * Fix default value of `bits` misnaming resulting libraryMarc Gilleron2020-06-021-15/+13
| |
* | Change default parameter to "yes"Duncan Sparks2020-08-231-1/+1
| |
* | Add option for template get_nodeDuncan Sparks2020-06-171-1/+6
|/
* Merge pull request #353 from bruvzg/ios_supportBastiaan Olij2020-01-301-2/+65
|\ | | | | | | Add iOS build support - couldn't test this but trust you @bruvzg ;) @piiertho please do add CI support for this!
| * Add iOS build support.bruvzg2019-11-261-2/+65
| |
* | windows use_mingw build fixAzeez Abass2019-12-151-10/+13
|/
* Android compile fixed for WindowsTGRCDev2019-09-181-32/+109
|
* Add android support, Update README.mdJayanth-L2019-09-181-3/+35
| | | | Compiles and runs fine on Android platform
* Merge pull request #295 from silverkorn/masterBastiaan Olij2019-06-161-1/+1
|\ | | | | Add MSYS/MinGW compiling support on Windows
| * Add MSYS/MinGW compiling support on Windowsunknown2019-05-151-1/+1
| | | | | | | | | | Tested successfully with MSYS2 with the following command: scons platform=windows generate_bindings=yes use_mingw=1 bits=64
* | Fix MinGW-w64 cross-compilation on macOS.bruvzg2019-05-251-2/+8
|/
* Merge pull request #260 from aqnuep/basis_conventionBastiaan Olij2019-04-101-1/+1
|\ | | | | Make Basis look column-major while retaining a row-major representation
| * Make Basis look column-major while retaining a row-major representationDaniel Rakos2019-04-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Per https://github.com/godotengine/godot/issues/14553: Godot stores Basis in row-major layout for more change for efficiently taking advantage of SIMD instructions, but in scripts Basis looks like and is accessible in a column-major format. This change modifies the C++ binding so that from the script's perspective Basis does look like if it was column-major while retaining a row-major in-memory representation. This is achieved using a set of helper template classes which allow accessing individual columns whose components are non-continues in memory as if it was a Vector3 type. This ensures script interface compatibility without needing to transpose the Basis every time it is passed over the script-engine boundary. Also made most of the Vector2 and Vector3 class interfaces inlined in the process for increased performance. While unrelated (but didn't want to file a separate PR for it), this change adds the necessary flags to have debug symbol information under MSVC. Fixes #241.
* | Fix and improve the build systemHugo Locurcio2019-04-071-49/+114
|/ | | | | | | | | | | - Fix automatic architecture detection - Fix compiling with MinGW on Linux - MinGW on Windows is still not working though - Default to Clang on macOS - Remove redundant `use_custom_api_file` option - Format SConstruct using Flake8 This closes #245.
* Set default arch to 64bits for osx platformlzubiaur2019-02-121-1/+1
|
* Improvements on SConstruct arch detectionMarcelo Fernandez2018-11-281-2/+6
|
* Fixing a few typos in SConstructBastiaan Olij2018-11-281-3/+3
|
* Replace ARGUMENTS with opts.Add/env and some cleanupWill Nations2018-11-251-10/+18
|
* Nativescript 1.1karroffel2018-11-071-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implemented instance binding data usage This commit changes the way C++ wrapper classes work. Previously, wrapper classes were merely wrapper *interfaces*. They used the `this` pointer to store the actual foreign Godot Object. With the NativeScript 1.1 extension it is now possible to have low-overhead language binding data attached to Objects. The C++ bindings use that feature to implement *proper* wrappers and enable regular C++ inheritance usage that way. Some things might still be buggy and untested, but the C++ SimpleDemo works with those changes. new and free change, custom free will crash engine, be wary fix exporting of non-object types fix free() crash with custom resources added type tags and safe object casting fix global type registration order fix cast_to changed build system to be more self contained updated .gitignore use typeid() for type tags now fix indentation in bindings generator remove accidentally added files fix gitignore Fixed up registering tool and updated godot_headers Fix crash when calling String::split/split_floats Was casting to the wrong object type. Also adds parse_ints function to String with the same logic Better warning/error macros Change gitignore so we get our gen folders New documentation based on nativescript 1.1 Fixed GODOT_SUBCLASS macro Preventing crash when function returned null ptr Adds needed include <typeinfo> Solves this issue #168 due to not having the include of typeinfo Fix compile error of 'WARN_PRINT' and 'ERR_PRINT'. cannot pass non-trivial object of type 'godot::String' to variadic function; expected type from format string was 'char *' [-Wnon-pod-varargs] update vector3::distance_to Remove godot_api.json as its now in the godot_headers submodule (api.json)
* Fix Windows 32 bits builds producing 64 bits codeMarcelo Fernandez2018-10-251-9/+9
|
* Improve the build systemHugo Locurcio2018-08-171-69/+85
| | | | | | | | | - The SCons option system is now used for validation - An help message can now be displayed using `scons -h` - New `use_mingw` option to compile using MinGW on Windows - Removed `arch` in favor of `bits` - Renamed `headers` to `headers_dir` - Built libraries now contain the target in the file name
* better debugging experience on linuxkarroffel2018-05-161-1/+6
|
* included godot_headers as submodulekarroffel2018-05-161-8/+8
|
* On OS X append .osx.64 to the result_name var on SConstructMarcelo Fernandez2018-04-081-0/+4
|
* Fix compile issues on WindowsMarcelo Fernandez2018-03-051-9/+9
|
* Fix compile problem on OS XMarcelo Fernandez2018-03-011-1/+1
|
* use_llvm fixQuentinCaffeino2018-02-251-3/+6
|
* Bindings are generated by default; Replaced generate with regenerate flag; ↵QuentinCaffeino2018-02-251-9/+5
| | | | Updated readme
* Added crosscompiling for linux-windows; Added makefileQuentinCaffeino2018-02-221-29/+66
|
* Json bindings are generated in cwdNickolai Korshunov2018-02-181-1/+1
|
* allow ~ in godotbinpathkarroffel2018-01-191-1/+1
|
* made godotbinpath accept the binary path itselfkarroffel2017-12-131-12/+2
|
* Implemented using api structBastiaan Olij2017-10-231-11/+3
|
* Add some command line parameters to overrule default pathsBastiaan Olij2017-09-131-3/+3
|
* Add compiler flags for windowsRichy HBM2017-07-301-0/+4
| | | This adds MSVC compiler flags to enable the DEBUG/NDEBUG defines, enable exceptions, turn on optimizations for Release builds, and link to the correct runtime library
* Fix using variable before defining itRichy HBM2017-07-291-4/+3
|