mirror of
https://github.com/godotengine/godot.git
synced 2025-01-23 11:03:13 -05:00
Fix CODEOWNERS and fix missing quote in "Building for platform" message
This commit is contained in:
parent
e69b7083d4
commit
267d267f3d
2 changed files with 3 additions and 3 deletions
4
.github/CODEOWNERS
vendored
4
.github/CODEOWNERS
vendored
|
@ -15,6 +15,7 @@ SCsub @godotengine/buildsystem
|
||||||
/core/ @godotengine/core
|
/core/ @godotengine/core
|
||||||
/core/crypto/ @godotengine/network
|
/core/crypto/ @godotengine/network
|
||||||
/core/debugger/ @godotengine/debugger
|
/core/debugger/ @godotengine/debugger
|
||||||
|
/core/extension/ @godotengine/gdextension
|
||||||
/core/input/ @godotengine/input
|
/core/input/ @godotengine/input
|
||||||
|
|
||||||
# Doc
|
# Doc
|
||||||
|
@ -110,10 +111,9 @@ doc_classes/* @godotengine/documentation
|
||||||
/modules/xatlas_unwrap/ @godotengine/rendering
|
/modules/xatlas_unwrap/ @godotengine/rendering
|
||||||
|
|
||||||
## Scripting
|
## Scripting
|
||||||
/modules/gdnative/ @godotengine/gdnative
|
|
||||||
/modules/gdscript/ @godotengine/gdscript
|
/modules/gdscript/ @godotengine/gdscript
|
||||||
/modules/jsonrpc/ @godotengine/gdscript
|
/modules/jsonrpc/ @godotengine/gdscript
|
||||||
/modules/mono/ @godotengine/mono
|
/modules/mono/ @godotengine/dotnet
|
||||||
|
|
||||||
## Text
|
## Text
|
||||||
/modules/freetype/ @godotengine/buildsystem
|
/modules/freetype/ @godotengine/buildsystem
|
||||||
|
|
|
@ -518,7 +518,7 @@ if selected_platform in platform_list:
|
||||||
# are actually handled to change compile options, etc.
|
# are actually handled to change compile options, etc.
|
||||||
detect.configure(env)
|
detect.configure(env)
|
||||||
|
|
||||||
print(f'Building for platform "{selected_platform}", architecture "{env["arch"]}", target "{env["target"]}.')
|
print(f'Building for platform "{selected_platform}", architecture "{env["arch"]}", target "{env["target"]}".')
|
||||||
if env.dev_build:
|
if env.dev_build:
|
||||||
print("NOTE: Developer build, with debug optimization level and debug symbols (unless overridden).")
|
print("NOTE: Developer build, with debug optimization level and debug symbols (unless overridden).")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue