Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
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
Container Registry
Model registry
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
atlas
athena
Merge requests
!68605
LeptonTaggers: cmake fix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
LeptonTaggers: cmake fix
ssnyder/athena:cmake.LeptonTaggers-20240205
into
main
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Scott Snyder
requested to merge
ssnyder/athena:cmake.LeptonTaggers-20240205
into
main
1 year ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
Fix lwtnn dependency.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
abd051c5
1 commit,
1 year ago
1 file
+
4
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
PhysicsAnalysis/AnalysisCommon/LeptonTaggers/CMakeLists.txt
+
4
−
3
Options
@@ -6,15 +6,16 @@
atlas_subdir
(
LeptonTaggers
)
# External dependencies:
find_package
(
ROOT COMPONENTS TMVA Core lwtnn
)
find_package
(
lwtnn
)
find_package
(
ROOT COMPONENTS TMVA Core
)
find_package
(
CORAL COMPONENTS CoralBase
)
# Component(s) in the package:
atlas_add_library
(
LeptonTaggersLib
LeptonTaggers/*.h src/*.cxx
PUBLIC_HEADERS LeptonTaggers
INCLUDE_DIRS
${
ROOT_INCLUDE_DIRS
}
LINK_LIBRARIES
${
ROOT_LIBRARIES
}
AthContainers
INCLUDE_DIRS
${
ROOT_INCLUDE_DIRS
}
${
LWTNN_INCLUDE_DIRS
}
LINK_LIBRARIES
${
ROOT_LIBRARIES
}
${
LWTNN_LIBRARIES
}
AthContainers
AthenaBaseComps
FourMomUtils
GaudiKernel
Loading