Skip to content

Commit 6007bce

Browse files
committed
Add export presets for windows
1 parent 4e5d741 commit 6007bce

2 files changed

Lines changed: 75 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Godot exported builds
66
/build/
7-
/export/
7+
/Exports/
88

99
# ===== .NET / C# =====
1010
*.csproj.user

export_presets.cfg

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
[preset.0]
2+
3+
name="Windows Desktop"
4+
platform="Windows Desktop"
5+
runnable=true
6+
dedicated_server=false
7+
custom_features=""
8+
export_filter="all_resources"
9+
include_filter=""
10+
exclude_filter=""
11+
export_path="Exports/Windows/LaserGunGame.exe"
12+
patches=PackedStringArray()
13+
patch_delta_encoding=false
14+
patch_delta_compression_level_zstd=19
15+
patch_delta_min_reduction=0.1
16+
patch_delta_include_filters="*"
17+
patch_delta_exclude_filters=""
18+
encryption_include_filters=""
19+
encryption_exclude_filters=""
20+
seed=0
21+
encrypt_pck=false
22+
encrypt_directory=false
23+
script_export_mode=2
24+
25+
[preset.0.options]
26+
27+
custom_template/debug=""
28+
custom_template/release=""
29+
debug/export_console_wrapper=1
30+
binary_format/embed_pck=false
31+
texture_format/s3tc_bptc=true
32+
texture_format/etc2_astc=false
33+
shader_baker/enabled=true
34+
binary_format/architecture="x86_64"
35+
codesign/enable=false
36+
codesign/timestamp=true
37+
codesign/timestamp_server_url=""
38+
codesign/digest_algorithm=1
39+
codesign/description=""
40+
codesign/custom_options=PackedStringArray()
41+
application/modify_resources=true
42+
application/icon="uid://dmiv5whg8p0ey"
43+
application/console_wrapper_icon=""
44+
application/icon_interpolation=4
45+
application/file_version=""
46+
application/product_version=""
47+
application/company_name=""
48+
application/product_name=""
49+
application/file_description=""
50+
application/copyright=""
51+
application/trademarks=""
52+
application/export_angle=0
53+
application/export_d3d12=0
54+
application/d3d12_agility_sdk_multiarch=true
55+
ssh_remote_deploy/enabled=false
56+
ssh_remote_deploy/host="user@host_ip"
57+
ssh_remote_deploy/port="22"
58+
ssh_remote_deploy/extra_args_ssh=""
59+
ssh_remote_deploy/extra_args_scp=""
60+
ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
61+
$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
62+
$trigger = New-ScheduledTaskTrigger -Once -At 00:00
63+
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries
64+
$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
65+
Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
66+
Start-ScheduledTask -TaskName godot_remote_debug
67+
while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
68+
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
69+
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
70+
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
71+
Remove-Item -Recurse -Force '{temp_dir}'"
72+
dotnet/include_scripts_content=false
73+
dotnet/include_debug_symbols=true
74+
dotnet/embed_build_outputs=false

0 commit comments

Comments
 (0)