Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
reconstruction_benchmarks
Manage
Activity
Members
Labels
Plan
Issues
22
Issue boards
Milestones
Wiki
Code
Merge requests
21
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container 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
EIC
benchmarks
reconstruction_benchmarks
Merge requests
!329
rich/CMakeLists.txt: compile library against spdlog
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
rich/CMakeLists.txt: compile library against spdlog
pr/rich_build_fix
into
master
Overview
2
Commits
1
Pipelines
1
Changes
1
Merged
Dmitry Kalinkin
requested to merge
pr/rich_build_fix
into
master
9 months ago
Overview
2
Commits
1
Pipelines
1
Changes
1
Expand
👍
0
👎
0
Merge request reports
Viewing commit
b259204e
Show latest version
1 file
+
6
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
b259204e
rich/CMakeLists.txt: compile library against spdlog
· b259204e
Dmitry Kalinkin
authored
9 months ago
benchmarks/rich/CMakeLists.txt
+
6
−
2
Options
@@ -18,8 +18,8 @@ set(algo_exe benchmark_${det_name}_reconstruction)
add_executable
(
${
algo_exe
}
${
algo_exe_source
}
)
# linking
target_link_libraries
(
${
algo_
exe
}
${
algo_lib
}
target_link_libraries
(
${
algo_
lib
}
PUBLIC
ROOT::Core
ROOT::Hist
podio::podio
@@ -28,6 +28,10 @@ target_link_libraries(${algo_exe}
EDM4HEP::edm4hep
spdlog::spdlog
)
target_link_libraries
(
${
algo_exe
}
PRIVATE
${
algo_lib
}
)
# installation
install
(
FILES
${
algo_headers
}
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
/
${
CMAKE_PROJECT_NAME
}
/
${
det_name
}
)
Loading