[CMAKE]
[reactos.git] / toolchain-msvc.cmake
1
2 # the name of the target operating system
3 set(CMAKE_SYSTEM_NAME Windows)
4 set(CMAKE_SYSTEM_PROCESSOR i686)
5
6 # which compilers to use for C and C++
7 set(CMAKE_C_COMPILER cl)
8 set(CMAKE_CXX_COMPILER cl)
9 set(CMAKE_RC_COMPILER rc)
10 if(${ARCH} MATCHES amd64)
11 set(CMAKE_ASM_COMPILER ml64)
12 else()
13 set(CMAKE_ASM_COMPILER ml)
14 endif()
15
16 set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> <DEFINES> /I${REACTOS_SOURCE_DIR}/include/psdk /I${REACTOS_BINARY_DIR}/include/psdk /I${REACTOS_SOURCE_DIR}/include /I${REACTOS_SOURCE_DIR}/include/reactos /I${REACTOS_BINARY_DIR}/include/reactos /I${REACTOS_SOURCE_DIR}/include/reactos/wine /I${REACTOS_SOURCE_DIR}/include/crt /I${REACTOS_SOURCE_DIR}/include/crt/mingw32 /fo <OBJECT> <SOURCE>")
17
18 set(CMAKE_ASM_COMPILE_OBJECT
19 "<CMAKE_C_COMPILER> /nologo /X /I${REACTOS_SOURCE_DIR}/include/asm /I${REACTOS_BINARY_DIR}/include/asm <FLAGS> <DEFINES> /D__ASM__ /D_USE_ML /EP /c <SOURCE> > <OBJECT>.tmp"
20 "<CMAKE_ASM_COMPILER> /nologo /Cp /Fo<OBJECT> /c /Ta <OBJECT>.tmp")
21
22 set(CMAKE_C_STANDARD_LIBRARIES "" CACHE INTERNAL "")
23
24 if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86")
25 add_definitions(-D__i386__)
26 endif()