mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-08-25 16:32:43 +00:00
11 lines
277 B
Bash
Executable File
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
|