diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-05-13 14:14:32 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-08-28 11:15:57 +0300 |
commit | ae334e069c042b2d3feba13ddaf63325ff3a4078 (patch) | |
tree | 3ad2216a991c0cd20fc7dbf017d8d86d88f3da34 /platform/windows/godot_res_wrap.rc | |
parent | 108c603f91b94100a1adc989316a372f0a6f8989 (diff) | |
download | redot-engine-ae334e069c042b2d3feba13ddaf63325ff3a4078.tar.gz |
[Windows] Always use absolute UNC paths and long path aware APIs, add "long path aware" flag to the application manifest.
Diffstat (limited to 'platform/windows/godot_res_wrap.rc')
-rw-r--r-- | platform/windows/godot_res_wrap.rc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/windows/godot_res_wrap.rc b/platform/windows/godot_res_wrap.rc index 27ad26cbc5..61e6100497 100644 --- a/platform/windows/godot_res_wrap.rc +++ b/platform/windows/godot_res_wrap.rc @@ -1,6 +1,11 @@ #include "core/version.h" +#ifndef RT_MANIFEST +#define RT_MANIFEST 24 +#endif + GODOT_ICON ICON platform/windows/godot_console.ico +1 RT_MANIFEST "godot.manifest" 1 VERSIONINFO FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,0 |