Warning, file /education/labplot/compile-debug was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #!/bin/bash 0002 0003 BUILDDIR=build-debug 0004 0005 if [ ! -d $BUILDDIR ]; then 0006 mkdir $BUILDDIR 0007 fi 0008 0009 cd $BUILDDIR 0010 0011 # -DCMAKE_C_FLAGS="-ftime-report" -DCMAKE_CXX_FLAGS="-ftime-report" 0012 cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr && make -j 4