Merge pull request 'feature/remove_sqlite' (#28) from feature/remove_sqlite into develop

Reviewed-on: #28
This commit is contained in:
Chris Cromer 2023-05-02 23:26:54 -04:00
commit f91930c41d
6 changed files with 15 additions and 258136 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@ builddir
*.kb
*.obk
!examples/*.obk
sqlite/*.c
sqlite/*.h

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

View File

@ -1,7 +1,7 @@
project('obelisk',
'c',
'cpp',
version : '1.0.3',
version : '1.0.4',
license : 'BSD-3-Clause',
default_options : [
'warning_level=3',

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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff