File indexing completed on 2025-01-18 09:13:24
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 export DD4hepExamplesINSTALL=@CMAKE_INSTALL_PREFIX@;
0011 source @CMAKE_INSTALL_PREFIX@/bin/this@PackageName@.sh;
0012
0013
0014 command=$1
0015 theargs=""
0016 shift
0017 for i in "$@" ; do
0018 if [ $i != ${command} ] ; then
0019 theargs="${theargs} $i"
0020 fi
0021 done
0022
0023 echo " #### LD_LIBRARY_PATH = : ${LD_LIBRARY_PATH}"
0024 echo " #### DYLD_LIBRARY_PATH = : ${DYLD_LIBRARY_PATH}"
0025
0026 echo " ### running test : '${command} ${theargs}'"
0027 exec ${command} ${theargs}