Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JAliEn-ROOT
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
JAliEn
JAliEn-ROOT
Merge requests
!10
Add missing dependency for libXMLIO
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add missing dependency for libXMLIO
nhardi/jalien-root:fix-missing-xmlio-dependency
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Nikola Hardi
requested to merge
nhardi/jalien-root:fix-missing-xmlio-dependency
into
master
6 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
1b09250a
1 commit,
6 years ago
1 file
+
1
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
CMakeLists.txt
+
1
−
1
Options
@@ -5,7 +5,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
@@ -5,7 +5,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
find_package
(
JSONC REQUIRED
)
find_package
(
JSONC REQUIRED
)
find_package
(
OpenSSL REQUIRED
)
find_package
(
OpenSSL REQUIRED
)
find_package
(
libwebsockets REQUIRED
)
find_package
(
libwebsockets REQUIRED
)
find_package
(
ROOT REQUIRED COMPONENTS Net Netx Tree
)
find_package
(
ROOT REQUIRED COMPONENTS Net Netx Tree
XMLIO
)
foreach
(
FEATURE xrootd xml
)
foreach
(
FEATURE xrootd xml
)
if
(
NOT ROOT_
${
FEATURE
}
_FOUND
)
if
(
NOT ROOT_
${
FEATURE
}
_FOUND
)
message
(
FATAL_ERROR
"ROOT was built without
${
FEATURE
}
support (required)"
)
message
(
FATAL_ERROR
"ROOT was built without
${
FEATURE
}
support (required)"
)
Loading