summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2019-12-11 16:57:59 +0100
committerVladislav Vaintroub <wlad@mariadb.com>2019-12-11 16:57:59 +0100
commit8d2f6d3ca5f9a4c07cced6204c7a36028fd9a544 (patch)
tree0a70c0ad27ff860f3fd5baad4deeec71965e7cfd
parente949b2d4abac99ffbc68bfd8c39a74e30caa3902 (diff)
downloadmariadb-git-8d2f6d3ca5f9a4c07cced6204c7a36028fd9a544.tar.gz
Fix overly chatty connect cmake, once again
-rw-r--r--storage/connect/CMakeLists.txt6
1 files changed, 1 insertions, 5 deletions
diff --git a/storage/connect/CMakeLists.txt b/storage/connect/CMakeLists.txt
index 7fc73bce59e..4ff9afd486b 100644
--- a/storage/connect/CMakeLists.txt
+++ b/storage/connect/CMakeLists.txt
@@ -322,10 +322,8 @@ ENDIF(CONNECT_WITH_MONGO)
OPTION(CONNECT_WITH_REST "Compile CONNECT storage engine with REST support" ON)
IF(CONNECT_WITH_REST)
- MESSAGE(STATUS "=====> REST support is ON")
- FIND_PACKAGE(cpprestsdk)
+ FIND_PACKAGE(cpprestsdk QUIET)
IF (cpprestsdk_FOUND)
- MESSAGE(STATUS "=====> cpprestsdk found")
IF(UNIX)
# INCLUDE_DIRECTORIES(${CPPRESTSDK_INCLUDE_DIR})
# If needed edit next line to set the path to libcpprest.so
@@ -334,8 +332,6 @@ IF(CONNECT_WITH_REST)
ENDIF(UNIX)
SET(CONNECT_SOURCES ${CONNECT_SOURCES} tabrest.cpp restget.cpp tabrest.h)
add_definitions(-DREST_SUPPORT)
- ELSE(NOT cpprestsdk_FOUND)
- MESSAGE(STATUS "=====> cpprestsdk package not found")
ENDIF (cpprestsdk_FOUND)
ENDIF(CONNECT_WITH_REST)