summaryrefslogtreecommitdiffstats
path: root/modules/mono/utils/path_utils.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix --generate-mono-glue bug when directory doesn't existIgnacio Etcheverry2019-07-081-34/+93
| | | | DirAccess::get_full_path(path) only works if the path exists. Implement our own abspath function.
* Mono: Test Windows binaries with lowercase extensionRémi Verschelde2019-01-271-1/+1
| | | | | | | | | To help users writing good cross-platform code, Godot's `FileAccessWindows:open()` will issue a warning on case mismatch, which happens here with capitalized extensions given by `PATHEXT` compared to actual file extensions which are lowercase 99% of the time. Fixes #25368.
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Improve the C# API projects generationIgnacio Etcheverry2018-11-081-4/+6
| | | | | | - Now there is only one solution that contains both GodotSharp and GodotSharpEditor project. Previously we had one solution for each project - GodotSharpEditor reference GodotShatp with a 'ProjectReference'. Previously it was a 'Reference' to the assembly - This also simplifies the command line option to generate this solution: 'godot --generate-cs-api <OutputDir>'
* Make core/ includes absolute, remove subfolders from include pathRémi Verschelde2018-09-121-4/+4
| | | | | | This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Fix 'which' returning file without extension on WindowsIgnacio Etcheverry2017-10-301-3/+3
|
* Added mono moduleIgnacio Etcheverry2017-10-031-0/+111