From 70d82f203c2a66694f79050340d3e7a7aaba66a3 Mon Sep 17 00:00:00 2001 From: Brian Bockelman Date: Thu, 14 Jun 2018 09:37:32 -0500 Subject: [PATCH] Output TPC build status in cmake summary. --- cmake/XRootDSummary.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/XRootDSummary.cmake b/cmake/XRootDSummary.cmake index f5fc4419a3e..606c613e676 100644 --- a/cmake/XRootDSummary.cmake +++ b/cmake/XRootDSummary.cmake @@ -9,6 +9,7 @@ component_status( KRB5 BUILD_KRB5 KERBEROS5_FOUND ) component_status( XRDCL ENABLE_XRDCL TRUE_VAR ) component_status( TESTS BUILD_TESTS CPPUNIT_FOUND ) component_status( HTTP BUILD_HTTP OPENSSL_FOUND ) +component_status( TPC BUILD_TPC CURL_FOUND ) component_status( CEPH BUILD_CEPH CEPH_FOUND ) component_status( PYTHON BUILD_PYTHON PYTHON_FOUND ) @@ -26,6 +27,7 @@ message( STATUS "Kerberos5 support: " ${STATUS_KRB5} ) message( STATUS "XrdCl: " ${STATUS_XRDCL} ) message( STATUS "Tests: " ${STATUS_TESTS} ) message( STATUS "HTTP support: " ${STATUS_HTTP} ) +message( STATUS "HTTP TPC support: " ${STATUS_TPC} ) message( STATUS "CEPH support: " ${STATUS_CEPH} ) message( STATUS "Python support: " ${STATUS_PYTHON} ) message( STATUS "----------------------------------------" )