2011-05-16 13:12:07 +00:00
|
|
|
|
2012-08-27 18:58:27 +00:00
|
|
|
if(NOT ARCH)
|
|
|
|
set(ARCH i386)
|
|
|
|
endif()
|
|
|
|
|
2015-09-05 14:38:50 +00:00
|
|
|
# Default to Debug for the build type
|
|
|
|
if(NOT DEFINED CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
|
|
|
|
"Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.")
|
|
|
|
endif()
|
|
|
|
|
2011-05-16 13:12:07 +00:00
|
|
|
# the name of the target operating system
|
|
|
|
set(CMAKE_SYSTEM_NAME Windows)
|
|
|
|
set(CMAKE_SYSTEM_PROCESSOR i686)
|
|
|
|
|
|
|
|
# which compilers to use for C and C++
|
|
|
|
set(CMAKE_C_COMPILER cl)
|
2014-05-25 12:29:49 +00:00
|
|
|
|
|
|
|
if(ARCH STREQUAL "arm")
|
|
|
|
include(CMakeForceCompiler)
|
|
|
|
CMAKE_FORCE_CXX_COMPILER(cl MSVC)
|
|
|
|
else()
|
2011-05-16 13:12:07 +00:00
|
|
|
set(CMAKE_CXX_COMPILER cl)
|
2014-05-25 12:29:49 +00:00
|
|
|
endif()
|
|
|
|
|
2012-08-24 15:36:17 +00:00
|
|
|
set(CMAKE_MC_COMPILER mc)
|
2011-05-16 13:12:07 +00:00
|
|
|
set(CMAKE_RC_COMPILER rc)
|
2012-08-27 18:58:27 +00:00
|
|
|
if(ARCH STREQUAL "amd64")
|
2011-05-16 13:12:07 +00:00
|
|
|
set(CMAKE_ASM_COMPILER ml64)
|
2014-05-26 15:28:12 +00:00
|
|
|
elseif(ARCH STREQUAL "arm")
|
|
|
|
set(CMAKE_ASM_COMPILER armasm)
|
2011-05-16 13:12:07 +00:00
|
|
|
else()
|
|
|
|
set(CMAKE_ASM_COMPILER ml)
|
|
|
|
endif()
|
2011-09-28 11:13:53 +00:00
|
|
|
set(CMAKE_ASM_COMPILER_ID "VISUAL")
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
set(CMAKE_C_STANDARD_LIBRARIES "" CACHE INTERNAL "")
|
|
|
|
|
2012-08-27 18:58:27 +00:00
|
|
|
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86")
|
2011-05-16 13:12:07 +00:00
|
|
|
add_definitions(-D__i386__)
|
|
|
|
endif()
|