From 6dc147bca514d3871f1eb676d6f7039cebe3f2d2 Mon Sep 17 00:00:00 2001 From: Attila Krasznahorkay <Attila.Krasznahorkay@cern.ch> Date: Fri, 18 Jan 2019 09:44:58 +0100 Subject: [PATCH] Removed the usage of CURL from CollectionUtilities. The package probably did use CURL at one point of its file, but it doesn't use it by now. So there's no need for it to set it up for its build. --- Database/APR/CollectionUtilities/CMakeLists.txt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Database/APR/CollectionUtilities/CMakeLists.txt b/Database/APR/CollectionUtilities/CMakeLists.txt index 46035535169c..c727639bed44 100644 --- a/Database/APR/CollectionUtilities/CMakeLists.txt +++ b/Database/APR/CollectionUtilities/CMakeLists.txt @@ -1,4 +1,3 @@ -# $Id: CMakeLists.txt 789390 2016-12-12 23:31:36Z tsulaia $ ################################################################################ # Package: CollectionUtilities ################################################################################ @@ -20,7 +19,6 @@ atlas_depends_on_subdirs( find_package( Boost ) find_package( CORAL COMPONENTS CoralBase ) find_package( XercesC ) -find_package( CURL ) # Component(s) in the package: atlas_add_library( CollectionUtilities @@ -49,10 +47,8 @@ atlas_add_library( CollectionUtilities # Helper macro declaring the utilities of the package: macro( collection_utility name ) atlas_add_executable( ${name} utilities/${name}.cpp - INCLUDE_DIRS ${CURL_INCLUDE_DIRS} - ${CORAL_INCLUDE_DIRS} ${XERCESC_INCLUDE_DIRS} - LINK_LIBRARIES ${CURL_LIBRARIES} - ${CORAL_LIBRARIES} ${XERCESC_LIBRARIES} CollectionBase + INCLUDE_DIRS $${CORAL_INCLUDE_DIRS} ${XERCESC_INCLUDE_DIRS} + LINK_LIBRARIES ${CORAL_LIBRARIES} ${XERCESC_LIBRARIES} CollectionBase PersistentDataModel FileCatalog POOLCore CollectionUtilities ) endmacro( collection_utility ) -- GitLab