feature/remove_sqlite #28

Merged
cromer merged 4 commits from feature/remove_sqlite into develop 2023-05-02 23:26:55 -04:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 819bcebce0 - Show all commits

View File

@ -14,6 +14,7 @@ The Obelisk project is a declarative language designed to help with the implemen
## Build
```
./sqlite.sh
meson builddir
cd buildir
ninja

11
sqlite.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
VERSION=sqlite-amalgamation-3410000
pushd sqlite
wget https://sqlite.org/2023/${VERSION}.zip
unzip ${VERSION}.zip
cp ${VERSION}/sqlite3.c .
cp ${VERSION}/sqlite3.h .
rm -rf ${VERSION} ${VERSION}.zip
popd