diff options
| author | 2017-08-31 18:37:11 -0400 | |
|---|---|---|
| committer | 2017-09-02 20:08:11 -0400 | |
| commit | 40505bc4fcc5cb1043b90b0acdce9e0093422921 (patch) | |
| tree | 278fc2720513cd515221ee9254157780eb6b548d | |
| parent | Merge pull request #2909 from wwylele/telemetry-gas (diff) | |
| download | yuzu-40505bc4fcc5cb1043b90b0acdce9e0093422921.tar.gz yuzu-40505bc4fcc5cb1043b90b0acdce9e0093422921.tar.xz yuzu-40505bc4fcc5cb1043b90b0acdce9e0093422921.zip | |
Add manifest
| -rw-r--r-- | CMakeLists.txt | 4 | ||||
| -rw-r--r-- | dist/citra.manifest | 24 | ||||
| -rw-r--r-- | src/citra/citra.rc | 8 | ||||
| -rw-r--r-- | src/citra_qt/citra-qt.rc | 8 |
4 files changed, 42 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ddba04ef9..f8060270e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -129,8 +129,8 @@ else() | |||
| 129 | set(CMAKE_C_FLAGS_RELEASE "/O2 /GS- /MD" CACHE STRING "" FORCE) | 129 | set(CMAKE_C_FLAGS_RELEASE "/O2 /GS- /MD" CACHE STRING "" FORCE) |
| 130 | set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}" CACHE STRING "" FORCE) | 130 | set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}" CACHE STRING "" FORCE) |
| 131 | 131 | ||
| 132 | set(CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG" CACHE STRING "" FORCE) | 132 | set(CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG /MANIFEST:NO" CACHE STRING "" FORCE) |
| 133 | set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE) | 133 | set(CMAKE_EXE_LINKER_FLAGS_RELEASE "/DEBUG /MANIFEST:NO /INCREMENTAL:NO /OPT:REF,ICF" CACHE STRING "" FORCE) |
| 134 | endif() | 134 | endif() |
| 135 | 135 | ||
| 136 | # Set file offset size to 64 bits. | 136 | # Set file offset size to 64 bits. |
diff --git a/dist/citra.manifest b/dist/citra.manifest new file mode 100644 index 000000000..fd30b656f --- /dev/null +++ b/dist/citra.manifest | |||
| @@ -0,0 +1,24 @@ | |||
| 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"/> | ||
| 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/PM</dpiAware> | ||
| 13 | <longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware> | ||
| 14 | </windowsSettings> | ||
| 15 | </application> | ||
| 16 | <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | ||
| 17 | <application> | ||
| 18 | <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | ||
| 19 | <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | ||
| 20 | <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> | ||
| 21 | <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> | ||
| 22 | </application> | ||
| 23 | </compatibility> | ||
| 24 | </assembly> \ No newline at end of file | ||
diff --git a/src/citra/citra.rc b/src/citra/citra.rc index fea603004..c490ef302 100644 --- a/src/citra/citra.rc +++ b/src/citra/citra.rc | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | #include "winresrc.h" | ||
| 1 | ///////////////////////////////////////////////////////////////////////////// | 2 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // | 3 | // |
| 3 | // Icon | 4 | // Icon |
| @@ -7,3 +8,10 @@ | |||
| 7 | // remains consistent on all systems. | 8 | // remains consistent on all systems. |
| 8 | CITRA_ICON ICON "../../dist/citra.ico" | 9 | CITRA_ICON ICON "../../dist/citra.ico" |
| 9 | 10 | ||
| 11 | |||
| 12 | ///////////////////////////////////////////////////////////////////////////// | ||
| 13 | // | ||
| 14 | // RT_MANIFEST | ||
| 15 | // | ||
| 16 | |||
| 17 | 1 RT_MANIFEST "../../dist/citra.manifest" | ||
diff --git a/src/citra_qt/citra-qt.rc b/src/citra_qt/citra-qt.rc index fea603004..c490ef302 100644 --- a/src/citra_qt/citra-qt.rc +++ b/src/citra_qt/citra-qt.rc | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | #include "winresrc.h" | ||
| 1 | ///////////////////////////////////////////////////////////////////////////// | 2 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // | 3 | // |
| 3 | // Icon | 4 | // Icon |
| @@ -7,3 +8,10 @@ | |||
| 7 | // remains consistent on all systems. | 8 | // remains consistent on all systems. |
| 8 | CITRA_ICON ICON "../../dist/citra.ico" | 9 | CITRA_ICON ICON "../../dist/citra.ico" |
| 9 | 10 | ||
| 11 | |||
| 12 | ///////////////////////////////////////////////////////////////////////////// | ||
| 13 | // | ||
| 14 | // RT_MANIFEST | ||
| 15 | // | ||
| 16 | |||
| 17 | 1 RT_MANIFEST "../../dist/citra.manifest" | ||