├── BUILD.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── bin ├── linux │ └── .gitignore ├── macos │ └── .gitignore └── windows │ └── .gitignore └── compress.sh /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calinou/godot-debug-builds/HEAD/BUILD.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calinou/godot-debug-builds/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calinou/godot-debug-builds/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calinou/godot-debug-builds/HEAD/README.md -------------------------------------------------------------------------------- /bin/linux/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /bin/macos/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /bin/windows/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /compress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calinou/godot-debug-builds/HEAD/compress.sh --------------------------------------------------------------------------------