summaryrefslogtreecommitdiff
path: root/contrib/SDL-3.2.8/build-scripts/cmake-toolchain-mingw64-i686.cmake
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2026-03-06 13:30:59 -0800
committer3gg <3gg@shellblade.net>2026-03-06 13:30:59 -0800
commit30f41c02aec763d32e62351452da9ef582bc3472 (patch)
tree6bec3f65bfdcbf7f1a631da21a6d613bef5db2fa /contrib/SDL-3.2.8/build-scripts/cmake-toolchain-mingw64-i686.cmake
parent452ff21ca02e315c64ceeb3f21c1ea357aeb1bc8 (diff)
Move contrib libraries to contrib repo
Diffstat (limited to 'contrib/SDL-3.2.8/build-scripts/cmake-toolchain-mingw64-i686.cmake')
-rw-r--r--contrib/SDL-3.2.8/build-scripts/cmake-toolchain-mingw64-i686.cmake18
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/SDL-3.2.8/build-scripts/cmake-toolchain-mingw64-i686.cmake b/contrib/SDL-3.2.8/build-scripts/cmake-toolchain-mingw64-i686.cmake
deleted file mode 100644
index 8be7b3a..0000000
--- a/contrib/SDL-3.2.8/build-scripts/cmake-toolchain-mingw64-i686.cmake
+++ /dev/null
@@ -1,18 +0,0 @@
1set(CMAKE_SYSTEM_NAME Windows)
2set(CMAKE_SYSTEM_PROCESSOR x86)
3
4find_program(CMAKE_C_COMPILER NAMES i686-w64-mingw32-gcc)
5find_program(CMAKE_CXX_COMPILER NAMES i686-w64-mingw32-g++)
6find_program(CMAKE_RC_COMPILER NAMES i686-w64-mingw32-windres windres)
7
8if(NOT CMAKE_C_COMPILER)
9 message(FATAL_ERROR "Failed to find CMAKE_C_COMPILER.")
10endif()
11
12if(NOT CMAKE_CXX_COMPILER)
13 message(FATAL_ERROR "Failed to find CMAKE_CXX_COMPILER.")
14endif()
15
16if(NOT CMAKE_RC_COMPILER)
17 message(FATAL_ERROR "Failed to find CMAKE_RC_COMPILER.")
18endif()