diff options
author | Alan Antonuk <alan.antonuk@gmail.com> | 2012-11-13 19:54:05 -0500 |
---|---|---|
committer | Alan Antonuk <alan.antonuk@gmail.com> | 2012-11-14 23:03:38 -0500 |
commit | 2a24d5ed87944f97b9f9b5f464bfe4b630d6490e (patch) | |
tree | d6ecc154f9d5825a4885aa0a7eb11e0d03eade17 | |
parent | f379cf5ed7e217d410edf7e2bcb203565ab0d2e6 (diff) | |
download | rabbitmq-c-2a24d5ed87944f97b9f9b5f464bfe4b630d6490e.tar.gz |
Improve CMake default build type status message
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f2bd19..133b35b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,7 +42,7 @@ endif () if (CMAKE_GENERATOR MATCHES ".*(Make|Ninja).*" AND NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE) - message(STATUS "CMAKE_BUILD_TYPE not specified. Using ${CMAKE_BUILD_TYPE} build") + message(STATUS "CMAKE_BUILD_TYPE not specified. Creating ${CMAKE_BUILD_TYPE} build") endif() #find python |