Skip to content
Snippets Groups Projects
Commit 11bd9aaa authored by Takashi Yamanaka's avatar Takashi Yamanaka
Browse files

Merge branch 'WorkDirCleanup-master-20170418' into 'master'

WorkDir Cleanup, master branch (2017.04.18.)

See merge request !997
parents 3d887abc ca90aa06
No related branches found
No related tags found
No related merge requests found
#
# Project file for building a selected set of packages against an
# installed AnalysisBase release/nightly.
#
# Set the minimum required CMake version:
cmake_minimum_required( VERSION 3.2 FATAL_ERROR )
# Let the user pick up updated AtlasCMake/AtlasLCG versions for testing:
find_package( AtlasCMake QUIET )
# Find the project that we depend on:
find_package( AnalysisBase REQUIRED )
# Set up CTest:
atlas_ctest_setup()
# Set up a work directory project:
atlas_project( AnalysisBaseWorkDir ${AnalysisBase_VERSION}
USE AnalysisBase ${AnalysisBase_VERSION}
PROJECT_ROOT ${CMAKE_SOURCE_DIR}/../.. )
# Set up the runtime environment setup script(s):
lcg_generate_env( SH_FILE ${CMAKE_BINARY_DIR}/${ATLAS_PLATFORM}/env_setup.sh )
install( FILES ${CMAKE_BINARY_DIR}/${ATLAS_PLATFORM}/env_setup.sh
DESTINATION . )
# Set up CPack:
atlas_cpack_setup()
AnalysisBaseWorkDir Project
===========================
This project can be used to build just a few packages from the repository
against an installed AnalysisBase release/nightly. It can be used in two ways.
Using a fully checked out repository
------------------------------------
If you have the entire `athena` repository checked out, you need to tell
the CMake configuration which packages you actually want to build. Otherwise
it will go ahead and attempt to build everything. Even packages not part of
the full AnalysisBase release itself.
You should make a copy of the `package_filters_example.txt` file found in
this directory, and modify it to select the packages you're interested in
for compilation. Then, configure the build of the project like:
asetup AnalysisBase,...
mkdir build
cd build/
cmake -DATLAS_PACKAGE_FILTER_FILE=/your/specific/package_filters.txt \
../athena/Projects/AnalysisBaseWorkDir/
Using a partially checked out repository
----------------------------------------
If you only checked out the packages that you want to compile, along with
this `Projects/AnalysisBaseWorkDir` directory, then you don't need to worry
about setting up a package filtering file. You can simply just do:
asetup AnalysisBase,...
mkdir build
cd build/
cmake ../athena/Projects/AnalysisBaseWorkDir/
This will set up the build of all checked out packages.
Using the local build
---------------------
After being done with the build, you have to remember to source the
`setup.sh` file of the build area to pick up your modifications! So, you
would do something like this to set up your runtime environment from scratch:
asetup AnalysisBase,...
source build/x86_64-slc6-gcc49-opt/setup.sh
#
# This is an example file for setting up which packages to pick up
# for a sparse build, when you have a full checkout of the repository,
# but only wish to rebuild some packages.
#
# The syntax is very simple:
#
# + REGEXP will include the package in the build
# - REGEXP will exclude the package from the build
#
# The first match against the package path wins, so list
# more specific matches above more general ones.
#
# Note that when you use git-atlas to make a sparse checkout, you will
# only have the packages available that you want to compile anyway.
# So in that case you should not bother with using such a filter file.
#
+ PhysicsAnalysis/AnalysisCommon/CPAnalysisExamples
- .*
#
# Project file for building a selected set of packages against an
# installed Athena release/nightly.
#
# Set the minimum required CMake version:
cmake_minimum_required( VERSION 3.2 FATAL_ERROR )
# Let the user pick up updated AtlasCMake/AtlasLCG versions for testing:
find_package( AtlasCMake QUIET )
# Find the project that we depend on:
find_package( Athena REQUIRED )
# Set up CTest:
atlas_ctest_setup()
# Set up a work directory project:
atlas_project( AthenaWorkDir ${Athena_VERSION}
USE Athena ${Athena_VERSION}
PROJECT_ROOT ${CMAKE_SOURCE_DIR}/../..
FORTRAN )
# Set up the runtime environment setup script(s):
lcg_generate_env( SH_FILE ${CMAKE_BINARY_DIR}/${ATLAS_PLATFORM}/env_setup.sh )
install( FILES ${CMAKE_BINARY_DIR}/${ATLAS_PLATFORM}/env_setup.sh
DESTINATION . )
# Set up CPack:
atlas_cpack_setup()
AthenaWorkDir Project
=====================
This project can be used to build just a few packages from the repository
against an installed Athena release/nightly. It can be used in two ways.
Using a fully checked out repository
------------------------------------
If you have the entire `athena` repository checked out, you need to tell
the CMake configuration which packages you actually want to build. Otherwise
it will go ahead and attempt to build everything. Even packages not part of
the full Athena release itself.
You should make a copy of the `package_filters_example.txt` file found in
this directory, and modify it to select the packages you're interested in,
for compilation. Then, configure the build of the project like:
asetup Athena,...
mkdir build
cd build/
cmake -DATLAS_PACKAGE_FILTER_FILE=/your/specific/package_filters.txt \
../athena/Projects/AthenaWorkDir/
Using a partially checked out repository
----------------------------------------
If you only checked out the packages that you want to compile, along with
this `Projects/AthenaWorkDir` directory, then you don't need to worry about
setting up a package filtering file. You can simply just do:
asetup Athena,...
mkdir build
cd build/
cmake ../athena/Projects/AthenaWorkDir/
This will set up the build of all checked out packages.
Using the local build
---------------------
After being done with the build, you have to remember to source the
`setup.sh` file of the build area to pick up your modifications! So, you
would do something like this to set up your runtime environment from scratch:
asetup Athena,...
source build/x86_64-slc6-gcc49-opt/setup.sh
Current nightly to use
----------------------
This subsection will be out of date very quickly, at which point it should
just be removed. But for now you can set up the Athena nightly from CVMFS
in the following way:
setupATLAS
lsetup -a latest asetup
asetup Athena,22.0.X-GIT,r15
#
# This is an example file for setting up which packages to pick up
# for a sparse build, when you have a full checkout of the repository,
# but only wish to rebuild some packages.
#
# The syntax is very simple:
#
# + REGEXP will include the package in the build
# - REGEXP will exclude the package from the build
#
# The first match against the package path wins, so list
# more specific matches above more general ones.
#
# Note that when you use git-atlas to make a sparse checkout, you will
# only have the packages available that you want to compile anyway.
# So in that case you should not bother with using such a filter file.
#
+ Control/AthenaExamples/AthExHelloWorld
- .*
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