diff options
| author | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2022-11-06 02:53:51 +0100 |
|---|---|---|
| committer | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2022-11-06 02:53:51 +0100 |
| commit | ca19ea1ce8535428d7cc969302c61bfda735c353 (patch) | |
| tree | 06ae90dc4de317b2a8b4e0c3138fa7ae4dad5969 /res/xp.manifest | |
| parent | 659b7214c72fec4da58598631d3a753840a84afc (diff) | |
Windows resource/manifest fixes
* Report correct Windows architecture for the build in the manifest
* Output processed .rc/.manifest in the CMake binary dir to prevent
potential issues with the files conflicting if cross compiling melonDS
on the same Windows machine
* Make the original file name actually make sense
Diffstat (limited to 'res/xp.manifest')
| -rw-r--r-- | res/xp.manifest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/res/xp.manifest b/res/xp.manifest index 85ca945..3e2476b 100644 --- a/res/xp.manifest +++ b/res/xp.manifest @@ -4,7 +4,7 @@ manifestVersion="1.0"> <assemblyIdentity name="Exe.Apps.Project" - processorArchitecture="amd64" + processorArchitecture="${WIN32_ARCHITECTURE}" version="1.0.0.0" type="win32"/> <description>Project</description> @@ -14,7 +14,7 @@ type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" - processorArchitecture="amd64" + processorArchitecture="${WIN32_ARCHITECTURE}" publicKeyToken="6595b64144ccf1df" language="*" /> |