Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
ea9a2eef
Commit
ea9a2eef
authored
4 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
Added XROOTD_XRDSSI_LIB to cmake/Findxrootd.cmake
parent
90f7e661
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmake/Findxrootd.cmake
+9
-5
9 additions, 5 deletions
cmake/Findxrootd.cmake
xroot_plugins/CMakeLists.txt
+1
-1
1 addition, 1 deletion
xroot_plugins/CMakeLists.txt
with
10 additions
and
6 deletions
cmake/Findxrootd.cmake
+
9
−
5
View file @
ea9a2eef
...
...
@@ -8,9 +8,9 @@
# words the header files that do not contribute to
# the xrootd ABI.
# XROOTD_XRDCL_LIB - location of the XrdCl library
# XROOTD_XRDPOSIX_LIB - location of the XrdPosix library
# XROOTD_XRDSERVER_LIB - location of the XrdServer library
# XROOTD_XRDUTILS_LIB - location of the XrdUtils library
# XROOTD_XRDPOSIX_LIB - location of the XrdPosix library
# Be silent if XROOTD_INCLUDE_DIR is already cached
if
(
XROOTD_INCLUDE_DIR
)
...
...
@@ -26,21 +26,25 @@ find_path (XROOTD_PRIVATE_INCLUDE_DIR XrdOss/XrdOssApi.hh
)
find_library
(
XROOTD_XRDCL_LIB XrdCl
)
find_library
(
XROOTD_XRDPOSIX_LIB XrdPosixPreload
)
find_library
(
XROOTD_XRDSERVER_LIB XrdServer
)
find_library
(
XROOTD_XRDSSI_LIB NAMES XrdSsi-4 XrdSsi-5
)
find_library
(
XROOTD_XRDUTILS_LIB XrdUtils
)
find_library
(
XROOTD_XRDPOSIX_LIB XrdPosixPreload
)
message
(
STATUS
"XROOTD_INCLUDE_DIR =
${
XROOTD_INCLUDE_DIR
}
"
)
message
(
STATUS
"XROOTD_PRIVATE_INCLUDE_DIR =
${
XROOTD_PRIVATE_INCLUDE_DIR
}
"
)
message
(
STATUS
"XROOTD_XRDCL_LIB =
${
XROOTD_XRDCL_LIB
}
"
)
message
(
STATUS
"XROOTD_XRDSERVER_LIB =
${
XROOTD_XRDSERVER_LIB
}
"
)
message
(
STATUS
"XROOTD_XRDPOSIX_LIB =
${
XROOTD_XRDPOSIX_LIB
}
"
)
message
(
STATUS
"XROOTD_XRDSERVER_LIB =
${
XROOTD_XRDSERVER_LIB
}
"
)
message
(
STATUS
"XROOTD_XRDSSI_LIB =
${
XROOTD_XRDSSI_LIB
}
"
)
message
(
STATUS
"XROOTD_XRDUTILS_LIB =
${
XROOTD_XRDUTILS_LIB
}
"
)
include
(
FindPackageHandleStandardArgs
)
find_package_handle_standard_args
(
xrootd DEFAULT_MSG
XROOTD_INCLUDE_DIR
XROOTD_PRIVATE_INCLUDE_DIR
XROOTD_XRDCL_LIB
XROOTD_XRDPOSIX_LIB
XROOTD_XRDSERVER_LIB
XROOTD_XRD
UTILS
_LIB
XROOTD_XRD
POSIX
_LIB
)
XROOTD_XRD
SSI
_LIB
XROOTD_XRD
UTILS
_LIB
)
This diff is collapsed.
Click to expand it.
xroot_plugins/CMakeLists.txt
+
1
−
1
View file @
ea9a2eef
...
...
@@ -38,7 +38,7 @@ include_directories(${CMAKE_BINARY_DIR}/eos_cta ${PROTOBUF3_INCLUDE_DIRS})
add_library
(
XrdSsiCta MODULE XrdSsiCtaServiceProvider.cpp XrdSsiCtaRequestProc.cpp XrdSsiCtaRequestMessage.cpp
../cmdline/CtaAdminCmdParse.cpp
GrpcClient.cpp GrpcEndpoint.cpp
)
target_link_libraries
(
XrdSsiCta
XrdSsi-4
XrdSsiLib XrdSsiPbEosCta ctascheduler ctacommon ctaobjectstore ctacatalogue
target_link_libraries
(
XrdSsiCta
${
XROOTD_XRDSSI_LIB
}
XrdSsiLib XrdSsiPbEosCta ctascheduler ctacommon ctaobjectstore ctacatalogue
EosMigration
${
GRPC_LIBRARY
}
${
GRPC_GRPC++_LIBRARY
}
)
set_property
(
TARGET XrdSsiCta APPEND PROPERTY INSTALL_RPATH
${
PROTOBUF3_RPATH
}
)
if
(
OCCI_SUPPORT
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment