File indexing completed on 2025-07-13 05:08:22
0001 #!/usr/bin/env bash 0002 # Builds SOCI for use with Valgrind in CI builds 0003 # 0004 # Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net> 0005 # Copyright (c) 2015 Sergei Nikulov <sergey.nikulov@gmail.com> 0006 # 0007 source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh 0008 0009 # Note that we don't use the default options here, as we don't want to turn 0010 # off all the backends (nor to enable ASAN which is incompatible with Valgrind). 0011 cmake ${SOCI_COMMON_CMAKE_OPTIONS} \ 0012 -DSOCI_ODBC=OFF \ 0013 .. 0014 0015 run_make