Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:16

0001 #!/bin/bash -l 
0002 
0003 msg="=== $BASH_SOURCE :"
0004 
0005 name=SCenterExtentFrameTest 
0006 
0007 gcc \
0008     $name.cc \
0009     ../SCenterExtentFrame.cc \
0010     \
0011     -std=c++11 \
0012     -lstdc++ \
0013     -lm \
0014     -I.. \
0015     -Wall \
0016     -Wnarrowing \
0017     -I$OPTICKS_PREFIX/externals/glm/glm \
0018     -o $OPTICKS_PREFIX/lib/$name 
0019 
0020 [ $? -ne 0 ] && echo $msg compile error && exit 1 
0021 
0022 
0023 $name
0024 
0025 [ $? -ne 0 ] && echo $msg run error && exit 2 
0026 
0027 
0028 
0029 exit 0 
0030 
0031