mirror of
https://github.com/reactos/reactos.git
synced 2025-01-10 16:18:16 +00:00
[CMAKE]
Add RC compiler and Assembler to MSC toolchain svn path=/branches/cmake-bringup/; revision=48820
This commit is contained in:
parent
d8ac6e1a9c
commit
e00685d331
1 changed files with 4 additions and 0 deletions
|
@ -10,6 +10,10 @@ set(CMAKE_SYSTEM_PROCESSOR i686)
|
|||
# which compilers to use for C and C++
|
||||
set(CMAKE_C_COMPILER cl)
|
||||
set(CMAKE_CXX_COMPILER cl)
|
||||
SET(CMAKE_RC_COMPILER rc)
|
||||
SET(CMAKE_ASM_COMPILER ml)
|
||||
|
||||
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>")
|
||||
|
||||
set(CMAKE_C_FLAGS_INIT "/DWIN32 /D_WINDOWS /W1 /Zm1000")
|
||||
|
||||
|
|
Loading…
Reference in a new issue