Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flow
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
Container Registry
Model registry
Operate
Environments
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
pwg-c2f
analysis
flow
Merge requests
!1
Dev
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Dev
dev
into
master
Overview
0
Commits
9
Pipelines
0
Changes
30
Merged
Viktor Klochkov
requested to merge
dev
into
master
5 years ago
Overview
0
Commits
9
Pipelines
0
Changes
30
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
b65a3b0b
9 commits,
5 years ago
30 files
+
605
−
553
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
30
Search (e.g. *.vue) (Ctrl+P)
cmake_modules/pid.cmake deleted
100644 → 0
+
0
−
28
Options
#
# Pid
#
set
(
Pid_INSTALL_DIR
${
EXTERNAL_INSTALL_DIR
}
)
set
(
Pid_INCLUDE_DIR
${
Pid_INSTALL_DIR
}
/include
)
set
(
Pid_LIBRARY_DIR
${
Pid_INSTALL_DIR
}
/lib
)
ExternalProject_Add
(
Pid_Ext
GIT_REPOSITORY
"https://git.cbm.gsi.de/pwg-c2f/analysis/pid.git"
GIT_TAG
"master"
UPDATE_DISCONNECTED
${
UPDATE_DISCONNECTED
}
SOURCE_DIR
"
${
EXTERNAL_DIR
}
/Pid_src"
BINARY_DIR
"
${
EXTERNAL_DIR
}
/Pid_build"
INSTALL_DIR
"
${
Pid_INSTALL_DIR
}
"
# CONFIGURE_COMMAND ""
# BUILD_COMMAND ""
# INSTALL_COMMAND ""
# TEST_COMMAND ""
CMAKE_ARGS
"-DCMAKE_INSTALL_PREFIX=
${
Pid_INSTALL_DIR
}
"
"-DCMAKE_BUILD_TYPE=
${
CMAKE_BUILD_TYPE
}
"
)
list
(
APPEND PROJECT_DEPENDENCIES Pid_Ext
)
list
(
APPEND PROJECT_LINK_DIRECTORIES
${
Pid_LIBRARY_DIR
}
)
list
(
APPEND PROJECT_INCLUDE_DIRECTORIES
${
Pid_INCLUDE_DIR
}
)
Loading