conways-life

Conway's game of life in Godot4
git clone git://bsandro.tech/conways-life
Log | Files | Refs | README | LICENSE

export_presets.cfg (3302B)


      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="out/conways-life.exe"
     12 encryption_include_filters=""
     13 encryption_exclude_filters=""
     14 encrypt_pck=false
     15 encrypt_directory=false
     16 
     17 [preset.0.options]
     18 
     19 custom_template/debug=""
     20 custom_template/release=""
     21 debug/export_console_wrapper=1
     22 binary_format/embed_pck=false
     23 texture_format/bptc=true
     24 texture_format/s3tc=true
     25 texture_format/etc=false
     26 texture_format/etc2=false
     27 binary_format/architecture="x86_64"
     28 codesign/enable=false
     29 codesign/timestamp=true
     30 codesign/timestamp_server_url=""
     31 codesign/digest_algorithm=1
     32 codesign/description=""
     33 codesign/custom_options=PackedStringArray()
     34 application/modify_resources=false
     35 application/icon=""
     36 application/console_wrapper_icon=""
     37 application/icon_interpolation=4
     38 application/file_version=""
     39 application/product_version=""
     40 application/company_name=""
     41 application/product_name=""
     42 application/file_description=""
     43 application/copyright=""
     44 application/trademarks=""
     45 application/export_angle=0
     46 ssh_remote_deploy/enabled=false
     47 ssh_remote_deploy/host="user@host_ip"
     48 ssh_remote_deploy/port="22"
     49 ssh_remote_deploy/extra_args_ssh=""
     50 ssh_remote_deploy/extra_args_scp=""
     51 ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
     52 $action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
     53 $trigger = New-ScheduledTaskTrigger -Once -At 00:00
     54 $settings = New-ScheduledTaskSettingsSet
     55 $task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
     56 Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
     57 Start-ScheduledTask -TaskName godot_remote_debug
     58 while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
     59 Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
     60 ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
     61 Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
     62 Remove-Item -Recurse -Force '{temp_dir}'"
     63 
     64 [preset.1]
     65 
     66 name="Linux/X11"
     67 platform="Linux/X11"
     68 runnable=true
     69 dedicated_server=false
     70 custom_features=""
     71 export_filter="all_resources"
     72 include_filter=""
     73 exclude_filter=""
     74 export_path="out/conways-life"
     75 encryption_include_filters=""
     76 encryption_exclude_filters=""
     77 encrypt_pck=false
     78 encrypt_directory=false
     79 
     80 [preset.1.options]
     81 
     82 custom_template/debug=""
     83 custom_template/release=""
     84 debug/export_console_wrapper=1
     85 binary_format/embed_pck=true
     86 texture_format/bptc=true
     87 texture_format/s3tc=true
     88 texture_format/etc=false
     89 texture_format/etc2=false
     90 binary_format/architecture="x86_64"
     91 ssh_remote_deploy/enabled=false
     92 ssh_remote_deploy/host="user@host_ip"
     93 ssh_remote_deploy/port="22"
     94 ssh_remote_deploy/extra_args_ssh=""
     95 ssh_remote_deploy/extra_args_scp=""
     96 ssh_remote_deploy/run_script="#!/usr/bin/env bash
     97 export DISPLAY=:0
     98 unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
     99 \"{temp_dir}/{exe_name}\" {cmd_args}"
    100 ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
    101 kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\")
    102 rm -rf \"{temp_dir}\""