0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-08-25 16:32:43 +00:00
Files
libsql/libsql-ffi/bundled/build_libsqlite3mc.sh
Piotr Sarna b4b63ff35c SQLite3MultipleCiphers: switch to just aes256
so that we're opinionated and compile-in less code.
2024-01-12 10:30:57 +01:00

11 lines
277 B
Bash
Executable File

#!/usr/bin/env sh
set -x
git submodule update --init SQLite3MultipleCiphers
mkdir -p SQLite3MultipleCiphers/build
cd SQLite3MultipleCiphers/build
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DSQLITE3MC_STATIC=ON \
-DCODEC_TYPE=AES256 -DSQLITE3MC_BUILD_SHELL=OFF
make -j12