aboutsummaryrefslogtreecommitdiff
path: root/cmake/Win64CrossToolchain.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/Win64CrossToolchain.cmake')
-rw-r--r--cmake/Win64CrossToolchain.cmake15
1 files changed, 0 insertions, 15 deletions
diff --git a/cmake/Win64CrossToolchain.cmake b/cmake/Win64CrossToolchain.cmake
deleted file mode 100644
index e895c2d..0000000
--- a/cmake/Win64CrossToolchain.cmake
+++ /dev/null
@@ -1,15 +0,0 @@
-set (CMAKE_SYSTEM_NAME "Windows")
-set (CMAKE_SYSTEM_PROCESSOR "x86_64")
-
-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")
-
-# Remember to set WINEPATH for library dependencies
-set (CMAKE_CROSSCOMPILING_EMULATOR "wine64")
-
-set (CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32")
-
-set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
-set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
-set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)