Warning, file /snippets/Calorimetery/CaloDebugTools/UtilityScripts/eic-build was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 if [ -z "$1" ]; then
0012 cmake -S . -B build
0013 cmake --build build --target install -- -j8
0014 source bin/eicrecon-this.sh
0015 elif [ "$1" == "epic" ]; then
0016 cmake -B build -S . -DCMAKE_INSTALL_PREFIX=install
0017 cmake --build build
0018 cmake --install build
0019 source install/setup.sh
0020 else
0021 cmake -S $1 -B $1/build
0022 cmake --build $1/build --target install -- -j8
0023 fi
0024
0025