Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. #
  2. # This is an example file for setting up which packages to pick up
  3. # for a sparse build, when you have a full checkout of the repository,
  4. # but only wish to rebuild some packages.
  5. #
  6. # The syntax is very simple:
  7. #
  8. # + REGEXP will include the package in the build
  9. # - REGEXP will exclude the package from the build
  10. #
  11. # The first match against the package path wins, so list
  12. # more specific matches above more general ones.
  13. #
  14. # In your build/ directory you can now do e.g:
  15. # cmake -DATLAS_PACKAGE_FILTER_FILE=../package_filters.txt ../athena/Projects/WorkDir
  16. # (where obviously you have put your package_filters.txt file in the same directory as build/)
  17. # Complete instructions are found here: https://atlassoftwaredocs.web.cern.ch/gittutorial/branch-and-change/#setting-up-to-compile-and-test-code-for-the-tutorial
  18. #
  19. # Note that when you use git-atlas to make a sparse checkout, you will
  20. # only have the packages available that you want to compile anyway.
  21. # So in that case you should not bother with using such a filter file.
  22.  
  23. #
  24. + Reconstruction/tauMonitoring
  25. + Control/AthenaMonitoring
  26. + Reconstruction/Jet/JetMonitoring
  27. - InnerDetector/InDetMonitoring/SCT_Monitoring
  28. + PhysicsAnalysis/TauID/TauHistUtils
  29.  
  30.  
  31. - .*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement