Merge pull request 'develop' (#29) from develop into master
Reviewed-on: #29
This commit is contained in:
commit
bac041dd60
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,3 +4,5 @@ builddir
|
||||
*.kb
|
||||
*.obk
|
||||
!examples/*.obk
|
||||
sqlite/*.c
|
||||
sqlite/*.h
|
||||
|
@ -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
|
||||
|
@ -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
11
sqlite.sh
Executable 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
|
245165
sqlite/sqlite3.c
245165
sqlite/sqlite3.c
File diff suppressed because it is too large
Load Diff
12970
sqlite/sqlite3.h
12970
sqlite/sqlite3.h
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user