aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2014-09-24 20:08:50 +0200
committerRiccardo Spagni <ric@spagni.net>2014-09-24 20:08:50 +0200
commit777d1ac93071ef0562bc0459d788c8907c2a2213 (patch)
treea84b6a640253a38f17270522e62274c690eac72a /cmake
parentuse boost::asio::ip::address because cross-platform plz (diff)
downloadmonero-777d1ac93071ef0562bc0459d788c8907c2a2213.tar.xz
added tomerkon's GPG key, cmake folder fix
Diffstat (limited to 'cmake')
-rw-r--r--cmake/32-bit-toolchain.cmake19
-rw-r--r--cmake/64-bit-toolchain.cmake19
2 files changed, 0 insertions, 38 deletions
diff --git a/cmake/32-bit-toolchain.cmake b/cmake/32-bit-toolchain.cmake
deleted file mode 100644
index 4543c1066..000000000
--- a/cmake/32-bit-toolchain.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-set (CMAKE_SYSTEM_NAME Windows)
-
-set (GCC_PREFIX i686-w64-mingw32)
-set (CMAKE_C_COMPILER ${GCC_PREFIX}-gcc)
-set (CMAKE_CXX_COMPILER ${GCC_PREFIX}-g++)
-set (CMAKE_AR ar CACHE FILEPATH "" FORCE)
-set (CMAKE_NM nm CACHE FILEPATH "" FORCE)
-#set (CMAKE_RANLIB ${GCC_PREFIX}-gcc-ranlib CACHE FILEPATH "" FORCE)
-set (CMAKE_RC_COMPILER windres)
-
-set (CMAKE_FIND_ROOT_PATH "${MSYS2_FOLDER}/mingw32")
-
-# Ensure cmake doesn't find things in the wrong places
-set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) # Find programs on host
-set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) # Find libs in target
-set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # Find includes in target
-
-set (MINGW_FLAG "-m32")
-set (USE_LTO_DEFAULT false)
diff --git a/cmake/64-bit-toolchain.cmake b/cmake/64-bit-toolchain.cmake
deleted file mode 100644
index e9b3cc51b..000000000
--- a/cmake/64-bit-toolchain.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-set (CMAKE_SYSTEM_NAME Windows)
-
-set (GCC_PREFIX x86_64-w64-mingw32)
-set (CMAKE_C_COMPILER ${GCC_PREFIX}-gcc)
-set (CMAKE_CXX_COMPILER ${GCC_PREFIX}-g++)
-set (CMAKE_AR ar CACHE FILEPATH "" FORCE)
-set (CMAKE_NM nm CACHE FILEPATH "" FORCE)
-#set (CMAKE_RANLIB ${GCC_PREFIX}-gcc-ranlib CACHE FILEPATH "" FORCE)
-set (CMAKE_RC_COMPILER windres)
-
-set (CMAKE_FIND_ROOT_PATH "${MSYS2_FOLDER}/mingw64")
-
-# Ensure cmake doesn't find things in the wrong places
-set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) # Find programs on host
-set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) # Find libs in target
-set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # Find includes in target
-
-set (MINGW_FLAG "-m64")
-set (USE_LTO_DEFAULT false)