mirror of
https://github.com/status-im/nim-sqlcipher.git
synced 2025-02-18 04:06:44 +00:00
An important aspect of this refactor is that a user of this library needs to supply openssl with respect to building the `sqlite3.c` amalgamation and the `sqlite.nim` wrapper.
8 lines
307 B
Bash
Executable File
8 lines
307 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# We use ${BASH_SOURCE[0]} instead of $0 to allow sourcing this file
|
|
# and we fall back to a Zsh-specific special var to also support Zsh.
|
|
REL_PATH="$(dirname ${BASH_SOURCE[0]:-${(%):-%x}})"
|
|
ABS_PATH="$(cd ${REL_PATH}; pwd)"
|
|
source ${ABS_PATH}/vendor/nimbus-build-system/scripts/env.sh
|