Commit f252d479e7363baa857248b3fb9a7fb4e517deaf

Vicent Martí 2011-06-17T10:32:42

Merge pull request #264 from nulltoken/patch-2 Fix misleading comment in CMake build script

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e56ace2..72f6049 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -41,7 +41,7 @@ IF (MSVC)
 	SET(CMAKE_C_FLAGS_RELEASE "/MT /O2")
 ENDIF()
 
-# Build Release by default
+# Build Debug by default
 IF (NOT CMAKE_BUILD_TYPE)
 	SET(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
 ENDIF ()