Warning, file /sdk/codevis/thirdparty/soci/scripts/ci/build_odbc.sh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #!/usr/bin/env bash
0002 # Builds SOCI ODBC backend in CI builds
0003 #
0004 # Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
0005 #
0006 source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh
0007 
0008 ODBC_TEST=${PWD}/../tests/odbc
0009 if test ! -d ${ODBC_TEST}; then
0010     echo "ERROR: '${ODBC_TEST}' directory not found"
0011     exit 1
0012 fi
0013 
0014 cmake ${SOCI_DEFAULT_CMAKE_OPTIONS} \
0015     -DSOCI_ODBC=ON \
0016    ..
0017 
0018 run_make