Skip to content
Snippets Groups Projects
Commit 0ec2106d authored by John Chapman's avatar John Chapman
Browse files

Add missing find_package statement for pytools to PyUtils package

The `PyUtils` package makes use of `pytools`, but the package
`CMakeLists.txt` file does not explicitly call `find_package( pytools )`.
Instead it relies on the calls in `DataQuality/DQDefects` and
`DataQuality/DQUtils`, so currently all projects which don't include
either of these packages are broken in `master`. This should fix
ATEAM-427.


Former-commit-id: 9f69907d
parent f260d71c
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ atlas_depends_on_subdirs( PUBLIC ...@@ -12,6 +12,7 @@ atlas_depends_on_subdirs( PUBLIC
# External dependencies: # External dependencies:
find_package( PythonLibs ) find_package( PythonLibs )
find_package( pytools )
find_package( ROOT COMPONENTS Core PyROOT Tree MathCore Hist RIO pthread ) find_package( ROOT COMPONENTS Core PyROOT Tree MathCore Hist RIO pthread )
# Install files from the package: # Install files from the package:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment