Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Computing
cbmroot
Merge requests
!2083
Add features: STS performance analysis task
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Add features: STS performance analysis task
d.ramirez/cbmroot:StsAnalysis
into
master
Overview
10
Commits
18
Pipelines
12
Changes
44
Open
Dario Ramirez
requested to merge
d.ramirez/cbmroot:StsAnalysis
into
master
1 month ago
Overview
8
Commits
18
Pipelines
12
Changes
44
Expand
STS performance analysis task
0
0
Merge request reports
Compare
master
version 11
2a6c98f1
1 month ago
version 10
c086a6f4
1 month ago
version 9
7cba66f9
1 month ago
version 8
69f0d7b8
1 month ago
version 7
e5db9f74
1 month ago
version 6
5e88046b
1 month ago
version 5
6c5eb5e8
1 month ago
version 4
3ab66707
1 month ago
version 3
e5a6fae1
1 month ago
version 2
58e6c47d
1 month ago
version 1
d45d95d7
1 month ago
master (HEAD)
and
latest version
latest version
d4884e21
18 commits,
1 month ago
version 11
2a6c98f1
13 commits,
1 month ago
version 10
c086a6f4
13 commits,
1 month ago
version 9
7cba66f9
13 commits,
1 month ago
version 8
69f0d7b8
13 commits,
1 month ago
version 7
e5db9f74
13 commits,
1 month ago
version 6
5e88046b
13 commits,
1 month ago
version 5
6c5eb5e8
13 commits,
1 month ago
version 4
3ab66707
13 commits,
1 month ago
version 3
e5a6fae1
13 commits,
1 month ago
version 2
58e6c47d
13 commits,
1 month ago
version 1
d45d95d7
13 commits,
1 month ago
44 files
+
6061
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
44
Search (e.g. *.vue) (Ctrl+P)
analysis/detectors/sts/tests/CMakeLists.txt
0 → 100644
+
27
−
0
Options
# CMakeList file for library libStsAna dedicated tests
# Last update: Dario Ramirez, 23.04.2025
Function
(
AddBasicTest name
)
set
(
PVT_DEPS
Gtest
GtestMain
CbmData
CbmStsBase
CbmStsAna
)
add_executable
(
${
name
}
${
name
}
.cxx
)
target_include_directories
(
${
name
}
PRIVATE
${
INCLUDE_DIRECTORIES
}
)
target_link_libraries
(
${
name
}
PRIVATE
${
PVT_DEPS
}
)
Add_Test
(
NAME
${
name
}
COMMAND
${
name
}
WORKING_DIRECTORY
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY
}
)
EndFunction
()
set
(
INCLUDE_DIRECTORIES
${
CMAKE_SOURCE_DIR
}
/analysis/detectors/sts
)
AddBasicTest
(
_GTestCbmCut
)
Loading