summaryrefslogtreecommitdiffstats
path: root/config/toolchain
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-07-12 15:56:45 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-07-12 15:56:55 (GMT)
commitc04ed97d4c587d6e7feeef6412e31cf38701b6d4 (patch)
tree62966cc7766bb16cb679fdc684470b662eeb04c8 /config/toolchain
parent346fe1a0bcb2da5e3b1de04f24195ce9781e846a (diff)
downloadhdf5-c04ed97d4c587d6e7feeef6412e31cf38701b6d4.zip
hdf5-c04ed97d4c587d6e7feeef6412e31cf38701b6d4.tar.gz
hdf5-c04ed97d4c587d6e7feeef6412e31cf38701b6d4.tar.bz2
Merge from develop, mostly HDFFV-10845
Diffstat (limited to 'config/toolchain')
-rw-r--r--config/toolchain/mingw64.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/config/toolchain/mingw64.cmake b/config/toolchain/mingw64.cmake
new file mode 100644
index 0000000..ad0fb85
--- /dev/null
+++ b/config/toolchain/mingw64.cmake
@@ -0,0 +1,10 @@
+set (CMAKE_SYSTEM_NAME Windows)
+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)
+set (CMAKE_Fortran_COMPILER x86_64-w64-mingw32-gfortran)
+set (CMAKE_FIND_ROOT_PATH )
+set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
+set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
+set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
+set (CMAKE_CROSSCOMPILING_EMULATOR wine64)