[CMAKE]: Fix compiler detection, we should check for CMAKE_HOST_SYSTEM_NAME, not...
authorSir Richard <sir_richard@svn.reactos.org>
Tue, 27 Jul 2010 17:36:25 +0000 (17:36 +0000)
committerSir Richard <sir_richard@svn.reactos.org>
Tue, 27 Jul 2010 17:36:25 +0000 (17:36 +0000)
[CMAKE]: PROCESSIR->PROCESSOR

svn path=/branches/cmake-bringup/; revision=48316

toolchain-mingw32.cmake

index 385cb55..a82e604 100644 (file)
@@ -1,5 +1,5 @@
 # Choose the right MinGW prefix
-if (CMAKE_SYSTEM_NAME STREQUAL Windows)
+if (CMAKE_HOST_SYSTEM_NAME MATCHES Windows)
 set(MINGW_PREFIX "")
 else()
 set(MINGW_PREFIX "mingw32-")
@@ -7,7 +7,7 @@ endif()
 
 # the name of the target operating system
 SET(CMAKE_SYSTEM_NAME Windows)
-SET(CMAKE_SYSTEM_PROCESSIR i686)
+SET(CMAKE_SYSTEM_PROCESSOR i686)
 
 # which compilers to use for C and C++
 SET(CMAKE_C_COMPILER ${MINGW_PREFIX}gcc)