File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" standalone =" yes" ?>
2
+ <assembly xmlns =" urn:schemas-microsoft-com:asm.v1" manifestVersion =" 1.0" >
3
+ <trustInfo xmlns =" urn:schemas-microsoft-com:asm.v3" >
4
+ <security >
5
+ <requestedPrivileges >
6
+ <requestedExecutionLevel level =" asInvoker" uiAccess =" false" ></requestedExecutionLevel >
7
+ </requestedPrivileges >
8
+ </security >
9
+ </trustInfo >
10
+ <application xmlns =" urn:schemas-microsoft-com:asm.v3" >
11
+ <windowsSettings >
12
+ <dpiAware xmlns =" http://schemas.microsoft.com/SMI/2005/WindowsSettings" >true</dpiAware >
13
+ </windowsSettings >
14
+ </application >
15
+ </assembly >
Original file line number Diff line number Diff line change @@ -474,6 +474,7 @@ set(common_SRCS
474
474
# This gives us the icon and file version information
475
475
if (WIN32 )
476
476
set (WINRESOURCE_FILE "${CMAKE_CURRENT_SOURCE_DIR} /../misc/winresource.rc" )
477
+ set (MINETEST_EXE_MANIFEST_FILE "${CMAKE_CURRENT_SOURCE_DIR} /../misc/minetest.exe.manifest" )
477
478
if (MINGW)
478
479
if (NOT CMAKE_RC_COMPILER)
479
480
set (CMAKE_RC_COMPILER "windres.exe" )
@@ -486,7 +487,7 @@ if(WIN32)
486
487
DEPENDS ${WINRESOURCE_FILE} )
487
488
SET (common_SRCS ${common_SRCS} ${CMAKE_CURRENT_BINARY_DIR} /winresource_rc.o)
488
489
else (MINGW) # Probably MSVC
489
- set (common_SRCS ${common_SRCS} ${WINRESOURCE_FILE} )
490
+ set (common_SRCS ${common_SRCS} ${WINRESOURCE_FILE} ${MINETEST_EXE_MANIFEST_FILE} )
490
491
endif (MINGW)
491
492
endif ()
492
493
You can’t perform that action at this time.
0 commit comments