Warning, file /sdk/codevis/thirdparty/soci/scripts/ci/build_mysql.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 MySQL 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 cmake ${SOCI_DEFAULT_CMAKE_OPTIONS} \
0009     -DSOCI_MYSQL=ON \
0010     -DSOCI_MYSQL_TEST_CONNSTR:STRING="db=soci_test" \
0011     ..
0012 
0013 run_make