diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-07-18 19:29:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-18 19:29:38 +0000 |
commit | 7913aa557618ca0df8d5a144f9425cb9b357c815 (patch) | |
tree | 2e1cd0fc11804b94b7ec282993af3b8f60e6db00 /alacritty/windows/alacritty.manifest | |
parent | 150b0bcb73571a254cf70e73659cc219c1f631db (diff) | |
download | r-alacritty-7913aa557618ca0df8d5a144f9425cb9b357c815.tar.gz r-alacritty-7913aa557618ca0df8d5a144f9425cb9b357c815.tar.bz2 r-alacritty-7913aa557618ca0df8d5a144f9425cb9b357c815.zip |
Invert windows asset symlinks
This commit swaps source and target for the windows asset symlinks,
since creation of a symlink is not possible on Windows systems without
administrator permissions.
By making the files inside the source folder the source instead of the
destination, a build is still possible without requiring elevated
privileges.
Fixes #5338.
Diffstat (limited to 'alacritty/windows/alacritty.manifest')
-rw-r--r-- | alacritty/windows/alacritty.manifest | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/alacritty/windows/alacritty.manifest b/alacritty/windows/alacritty.manifest new file mode 100644 index 00000000..82039bf7 --- /dev/null +++ b/alacritty/windows/alacritty.manifest @@ -0,0 +1,8 @@ +<?xml version='1.0' encoding='UTF-8' standalone='yes'?> +<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" > + <asmv3:application> + <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings"> + <dpiAwareness>PerMonitorV2, unaware</dpiAwareness> + </asmv3:windowsSettings> + </asmv3:application> +</assembly> |