Added mingw-w64 toolchain files
authorxantares <xantares09@hotmail.com>
Wed, 14 Aug 2013 18:23:08 +0000 (20:23 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Mon, 2 Sep 2013 12:46:52 +0000 (14:46 +0200)
CMakeLists.txt
cmake/Toolchain-Crossbuild32.cmake [moved from Toolchain-Crossbuild32.cmake with 100% similarity]
cmake/Toolchain-i686-w64-mingw32.cmake [copied from Toolchain-mingw32.cmake with 70% similarity]
cmake/Toolchain-mingw32.cmake [copied from Toolchain-mingw32.cmake with 100% similarity]
cmake/Toolchain-x86_64-w64-mingw32.cmake [moved from Toolchain-mingw32.cmake with 69% similarity]
cmake/UseLibFTDI1.cmake [moved from UseLibFTDI1.cmake with 100% similarity]

index 9c7a6a5..1e74b7f 100644 (file)
@@ -196,7 +196,7 @@ if ( UNIX )
   
   set ( LIBFTDI_USE_FILE ${CMAKE_INSTALL_PREFIX}/${LIBFTDI_CMAKE_CONFIG_DIR}/UseLibFTDI1.cmake )
   configure_file ( LibFTDI1Config.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/LibFTDI1Config.cmake @ONLY )
-  install ( FILES ${CMAKE_CURRENT_BINARY_DIR}/LibFTDI1Config.cmake UseLibFTDI1.cmake
+  install ( FILES ${CMAKE_CURRENT_BINARY_DIR}/LibFTDI1Config.cmake cmake/UseLibFTDI1.cmake
             DESTINATION ${LIBFTDI_CMAKE_CONFIG_DIR}
           )
 endif ()
similarity index 70%
copy from Toolchain-mingw32.cmake
copy to cmake/Toolchain-i686-w64-mingw32.cmake
index bff3cba..1eed0cf 100644 (file)
@@ -2,11 +2,11 @@
 SET(CMAKE_SYSTEM_NAME Windows)
 
 # which compilers to use for C and C++
-SET(CMAKE_C_COMPILER i386-mingw32msvc-gcc)
-SET(CMAKE_CXX_COMPILER i386-mingw32msvc-g++)
+SET(CMAKE_C_COMPILER i686-w64-mingw32-gcc)
+SET(CMAKE_CXX_COMPILER i686-w64-mingw32-g++)
 
 # here is the target environment located
-SET(CMAKE_FIND_ROOT_PATH  /opt/cross/i386-mingw32msvc )
+SET(CMAKE_FIND_ROOT_PATH  /usr/i686-w64-mingw32 )
 
 # adjust the default behaviour of the FIND_XXX() commands:
 # search headers and libraries in the target environment, search 
@@ -14,3 +14,4 @@ SET(CMAKE_FIND_ROOT_PATH  /opt/cross/i386-mingw32msvc )
 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_RC_COMPILER i686-w64-mingw32-windres)
similarity index 69%
rename from Toolchain-mingw32.cmake
rename to cmake/Toolchain-x86_64-w64-mingw32.cmake
index bff3cba..20a5b40 100644 (file)
@@ -2,11 +2,11 @@
 SET(CMAKE_SYSTEM_NAME Windows)
 
 # which compilers to use for C and C++
-SET(CMAKE_C_COMPILER i386-mingw32msvc-gcc)
-SET(CMAKE_CXX_COMPILER i386-mingw32msvc-g++)
+SET(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
+SET(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
 
 # here is the target environment located
-SET(CMAKE_FIND_ROOT_PATH  /opt/cross/i386-mingw32msvc )
+SET(CMAKE_FIND_ROOT_PATH  /usr/x86_64-w64-mingw32 )
 
 # adjust the default behaviour of the FIND_XXX() commands:
 # search headers and libraries in the target environment, search 
@@ -14,3 +14,4 @@ SET(CMAKE_FIND_ROOT_PATH  /opt/cross/i386-mingw32msvc )
 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_RC_COMPILER x86_64-w64-mingw32-windres)
similarity index 100%
rename from UseLibFTDI1.cmake
rename to cmake/UseLibFTDI1.cmake