2 if [ ${#EDEP_ROOT} == 0 ]; then
3 echo EDEP is not setup yet. You need to source build/edep-setup.sh.
4 echo You can also run cmake and make by hand...
9 BUILD_LOCATION=${EDEP_ROOT}/${EDEP_TARGET}
10 if [ ! -d ${BUILD_LOCATION} ]; then
11 mkdir -p ${BUILD_LOCATION}
14 if [ ! -d ${BUILD_LOCATION} ]; then
15 echo Unable to access build location at ${BUILD_LOCATION}
21 if [ ${#1} != 0 -a "x${1}" == "xforce" ]; then
23 echo Reconfigure build.
24 if [ -f CMakeCache.txt ]; then
27 if [ -d CMakeFiles ]; then
32 if [ ! -f CMakeCache.txt ]; then
33 cmake -DCMAKE_INSTALL_PREFIX=${EDEP_ROOT}/${EDEP_TARGET} ${EDEP_ROOT}