mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CMAKE] Set Debug as the default build type for MSVC builds.
svn path=/trunk/; revision=69029
This commit is contained in:
parent
d60b5b3bab
commit
abfb19af87
1 changed files with 6 additions and 0 deletions
|
@ -3,6 +3,12 @@ if(NOT ARCH)
|
|||
set(ARCH i386)
|
||||
endif()
|
||||
|
||||
# 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()
|
||||
|
||||
# the name of the target operating system
|
||||
set(CMAKE_SYSTEM_NAME Windows)
|
||||
set(CMAKE_SYSTEM_PROCESSOR i686)
|
||||
|
|
Loading…
Reference in a new issue