From 197d071160043fa64aa9c49c8dbbc61bc4fdd45f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Tue, 9 Apr 2024 13:04:32 +0200 Subject: [PATCH] Enable cross-compiled tests --- cmake/Win64CrossToolchain.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/Win64CrossToolchain.cmake b/cmake/Win64CrossToolchain.cmake index 68214ec..e895c2d 100644 --- a/cmake/Win64CrossToolchain.cmake +++ b/cmake/Win64CrossToolchain.cmake @@ -5,8 +5,8 @@ set (CMAKE_C_COMPILER "x86_64-w64-mingw32-gcc") set (CMAKE_CXX_COMPILER "x86_64-w64-mingw32-g++") set (CMAKE_RC_COMPILER "x86_64-w64-mingw32-windres") -# Not needed to crosscompile an installation package -#set (CMAKE_CROSSCOMPILING_EMULATOR "wine64") +# Remember to set WINEPATH for library dependencies +set (CMAKE_CROSSCOMPILING_EMULATOR "wine64") set (CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32")