diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-10-28 10:55:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-30 12:24:36 -0700 |
commit | e9073a7570f490ad169dbd92a7d6f102c423c2ca (patch) | |
tree | 4c8b4ba00449ea030d04c8683821b7162fa09a42 /CMakeLists.txt | |
parent | cdf1865246563fde47a1cf2a5fc3c0fd70b8e5ba (diff) | |
download | subsurface-e9073a7570f490ad169dbd92a7d6f102c423c2ca.tar.gz |
build-system: first steps towards a 64bit Windows build
This is barely scratching the surface (no put intended), and of course the
container needs to be updated, first, to have a 64bit version of MXE installed,
but this seems to help make libmtp build correctly.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d08af9382..478bf305d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -474,7 +474,7 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin") elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") if (CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo") if(NOT DEFINED OBJCOPY) - set(OBJCOPY i686-w64-mingw32.shared-objcopy) + set(OBJCOPY x86_64-w64-mingw32.shared-objcopy) endif() find_program(OBJCOPY_FOUND ${OBJCOPY}) if (OBJCOPY_FOUND) |