diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2024-04-09 13:04:32 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2024-04-09 13:04:32 +0200 |
commit | 197d071160043fa64aa9c49c8dbbc61bc4fdd45f (patch) | |
tree | 293740a54830df3989fc24d50aae2c1a68a0792f | |
parent | fafac22d60c61cbf5bcf4d1ea818fd27ac5dfc67 (diff) | |
download | tdv-197d071160043fa64aa9c49c8dbbc61bc4fdd45f.tar.gz tdv-197d071160043fa64aa9c49c8dbbc61bc4fdd45f.tar.xz tdv-197d071160043fa64aa9c49c8dbbc61bc4fdd45f.zip |
Enable cross-compiled tests
-rw-r--r-- | cmake/Win64CrossToolchain.cmake | 4 |
1 files 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") |