File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,6 +73,20 @@ Studio (``[PRESET]`` is equal to the value after ``--preset`` above).
7373
7474## Compile instructions for EasyRPG Editor
7575
76+ ### Enabling Long Path Support
77+
78+ Compiling the editor fails because the path length of the Kirigami dependency
79+ exceeds the legacy Windows limit of 260 characters.
80+
81+ To resolve this issue, either enable long path support in the Windows 11
82+ Developer Settings, or run the following command in PowerShell as an
83+ administrator:
84+
85+ ``` psh
86+ New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" `
87+ -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
88+ ```
89+
7690### Configuring
7791
7892Open the "Developer Command Prompt for Visual Studio 2022" from the Start menu
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ call helper\prepare.cmd
44
55:: Build 64-bit libraries
66vcpkg install --triplet x64-windows-static-easyrpgeditor --recurse^
7- zlib[core] expat[core] inih[cpp] nlohmann-json[core]
7+ zlib[core] expat[core] inih[cpp] nlohmann-json[core] glaze[core]
88
99:: Other dependencies such as Kirigami are built via vcpkg.json and a custom
1010:: overlay in the editor repository. This makes updating them easier.
You can’t perform that action at this time.
0 commit comments