summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <vicent@github.com>2014-01-13 06:09:51 -0800
committerVicent Marti <vicent@github.com>2014-01-13 06:09:51 -0800
commitbe29dd82e27d3536b9c63f5835b102b28934555e (patch)
treec029182f32f91c42a8ccf01b61c14f49e05bc63e
parent9dcd8cee6efa6614660019516153a5b0e6249825 (diff)
parent86f92b7431b15ccde4ba63a60afad87db83a215e (diff)
downloadlibgit2-be29dd82e27d3536b9c63f5835b102b28934555e.tar.gz
Merge pull request #2040 from scunz/cmake_msgs
Show informational messages during cmake run as informational
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 48cbccb4e..f1c81eb6f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -136,7 +136,7 @@ ELSE ()
LINK_LIBRARIES(${HTTP_PARSER_LIBRARIES})
SET(LIBGIT2_PC_LIBS "${LIBGIT2_PC_LIBS} -lhttp_parser")
ELSE()
- MESSAGE("http-parser was not found or is too old; using bundled 3rd-party sources.")
+ MESSAGE(STATUS "http-parser was not found or is too old; using bundled 3rd-party sources.")
INCLUDE_DIRECTORIES(deps/http-parser)
FILE(GLOB SRC_HTTP deps/http-parser/*.c deps/http-parser/*.h)
ENDIF()
@@ -177,9 +177,9 @@ IF (ZLIB_FOUND)
SET(LIBGIT2_PC_REQUIRES "${LIBGIT2_PC_REQUIRES} zlib")
ENDIF()
# Fake the message CMake would have shown
- MESSAGE("-- Found zlib: ${ZLIB_LIBRARY}")
+ MESSAGE(STATUS "Found zlib: ${ZLIB_LIBRARY}")
ELSE()
- MESSAGE( "zlib was not found; using bundled 3rd-party sources." )
+ MESSAGE(STATUS "zlib was not found; using bundled 3rd-party sources." )
INCLUDE_DIRECTORIES(deps/zlib)
ADD_DEFINITIONS(-DNO_VIZ -DSTDC -DNO_GZIP)
FILE(GLOB SRC_ZLIB deps/zlib/*.c deps/zlib/*.h)