Now the app project helper build script supports custom module folders.

This commit is contained in:
Relintai 2022-08-22 14:58:50 +02:00
parent 2ef28475cd
commit 1fa33fadfa
2 changed files with 5 additions and 0 deletions

View File

@ -392,6 +392,9 @@ if len(sys.argv) > 1:
if arg[0] == 'b':
build_string = get_exports_for('global') + get_additional_commands_for('global') + 'scons '
if module_config.custom_module_folders != "":
build_string += 'custom_modules=' + module_config.custom_module_folders + " "
build_string += 'tools='
if 'e' in arg:
build_string += 'yes'

View File

@ -28,4 +28,6 @@ addon_repositories = [
third_party_addon_repositories = [
]
custom_module_folders = ""
slim_args = 'module_webm_enabled=no module_arkit_enabled=no module_visual_script_enabled=no module_gdnative_enabled=no module_mobile_vr_enabled=no module_theora_enabled=no module_xatlas_unwrap_enabled=no'