mirror of
https://github.com/SOCI/soci.git
synced 2026-05-12 22:59:05 -05:00
0998eb587a
There doesn't seem to be any reason to override the default and doing
this disables FK support which is enabled by default since 2a8abbe4
(Turn foreign keys on by default for SQLite tests, 2025-01-21).
13 lines
251 B
Bash
Executable File
13 lines
251 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Builds SOCI SQLite3 backend in CI builds
|
|
#
|
|
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
|
|
#
|
|
source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh
|
|
|
|
cmake ${SOCI_DEFAULT_CMAKE_OPTIONS} \
|
|
-DSOCI_SQLITE3=ON \
|
|
..
|
|
|
|
run_make
|