mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[CMAKE]: Fix compiler detection, we should check for CMAKE_HOST_SYSTEM_NAME, not CMAKE_SYSTEM_NAME, which is always Windows on a cross-build.
[CMAKE]: PROCESSIR->PROCESSOR svn path=/branches/cmake-bringup/; revision=48316
This commit is contained in:
parent
bba1ffd927
commit
b2e6f743b6
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue