From commits-return-44464-archive-asf-public=cust-asf.ponee.io@qpid.apache.org Mon Apr 2 19:55:48 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 38BBD180627 for ; Mon, 2 Apr 2018 19:55:48 +0200 (CEST) Received: (qmail 76154 invoked by uid 500); 2 Apr 2018 17:55:47 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 76145 invoked by uid 99); 2 Apr 2018 17:55:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Apr 2018 17:55:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4169DEB4F4; Mon, 2 Apr 2018 17:55:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chug@apache.org To: commits@qpid.apache.org Message-Id: <51fefd3db07e45d6bb34c8d3732f3937@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: qpid-dispatch git commit: DISPATCH-951: Show location and version of Proton found by CMake Date: Mon, 2 Apr 2018 17:55:47 +0000 (UTC) Repository: qpid-dispatch Updated Branches: refs/heads/master c0996627f -> 5ee639374 DISPATCH-951: Show location and version of Proton found by CMake CMake displays the location and version numbers for python and libwebsockets used in the build. Print that same information for qpid-proton. Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/5ee63937 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/5ee63937 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/5ee63937 Branch: refs/heads/master Commit: 5ee639374a5131ac6316f613e9387eecf5e53955 Parents: c099662 Author: Chuck Rolke Authored: Mon Apr 2 13:51:10 2018 -0400 Committer: Chuck Rolke Committed: Mon Apr 2 13:51:10 2018 -0400 ---------------------------------------------------------------------- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/5ee63937/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/CMakeLists.txt b/CMakeLists.txt index 55c6e5f..e13a45c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -116,6 +116,8 @@ find_library(dl_lib dl) find_library(rt_lib rt) find_package(Proton REQUIRED Core Proactor) +message(STATUS "Found Proton: ${Proton_LIBRARIES} (found version \"${Proton_VERSION}\")" ) + ## Optional dependencies include(FindLibWebSockets) option(USE_LIBWEBSOCKETS "Use libwebsockets for WebSocket support" ${LIBWEBSOCKETS_FOUND}) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org