Enable long file paths for UEFIFind

This commit is contained in:
Nikolaj Schlej 2025-02-12 09:16:42 +01:00
parent b0cd7fe38f
commit 371448d0ec
2 changed files with 9 additions and 1 deletions

View File

@ -59,7 +59,7 @@ SET(PROJECT_SOURCES
../common/zlib/zutil.c
)
ADD_EXECUTABLE(UEFIFind ${PROJECT_SOURCES})
ADD_EXECUTABLE(UEFIFind ${PROJECT_SOURCES} uefifind.manifest)
IF(UNIX)
SET_TARGET_PROPERTIES(UEFIFind PROPERTIES OUTPUT_NAME uefifind)

View File

@ -0,0 +1,8 @@
<assembly xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<asmv1:assemblyIdentity type='win32' name='me.coderush.UEFIFind' version='1.0.0.0' />
<asmv3:application>
<asmv3:windowsSettings xmlns:ws2="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
<ws2:longPathAware>true</ws2:longPathAware>
</asmv3:windowsSettings>
</asmv3:application>
</assembly>