aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/qt_sdl
diff options
context:
space:
mode:
authorNadia Holmquist Pedersen <nadia@nhp.sh>2022-11-06 02:53:51 +0100
committerNadia Holmquist Pedersen <nadia@nhp.sh>2022-11-06 02:53:51 +0100
commitca19ea1ce8535428d7cc969302c61bfda735c353 (patch)
tree06ae90dc4de317b2a8b4e0c3138fa7ae4dad5969 /src/frontend/qt_sdl
parent659b7214c72fec4da58598631d3a753840a84afc (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 'src/frontend/qt_sdl')
-rw-r--r--src/frontend/qt_sdl/CMakeLists.txt14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/frontend/qt_sdl/CMakeLists.txt b/src/frontend/qt_sdl/CMakeLists.txt
index 6b964f3..96686b5 100644
--- a/src/frontend/qt_sdl/CMakeLists.txt
+++ b/src/frontend/qt_sdl/CMakeLists.txt
@@ -157,8 +157,18 @@ if (UNIX)
elseif (WIN32)
option(PORTABLE "Make a portable build that looks for its configuration in the current directory" ON)
- configure_file("${CMAKE_SOURCE_DIR}/res/melon.rc.in" "${CMAKE_SOURCE_DIR}/melon.rc")
- target_sources(melonDS PUBLIC "${CMAKE_SOURCE_DIR}/melon.rc")
+ configure_file("${CMAKE_SOURCE_DIR}/res/melon.rc.in" "${CMAKE_BINARY_DIR}/res/melon.rc")
+ target_sources(melonDS PUBLIC "${CMAKE_BINARY_DIR}/res/melon.rc")
+
+ if (${ARCHITECTURE} STREQUAL x86_64)
+ set(WIN32_ARCHITECTURE amd64)
+ elseif (${ARCHITECTURE} STREQUAL x86)
+ set(WIN32_ARCHITECTURE x86)
+ elseif (${ARCHITECTURE} MATCHES "ARM(64)?")
+ string(TOLOWER "${ARCHITECTURE}" WIN32_ARCHITECTURE)
+ endif()
+
+ configure_file("${CMAKE_SOURCE_DIR}/res/xp.manifest.in" "${CMAKE_BINARY_DIR}/res/xp.manifest")
target_link_libraries(melonDS PRIVATE ws2_32 iphlpapi)
set_target_properties(melonDS PROPERTIES LINK_FLAGS_DEBUG "-mconsole")