develop #29
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,3 +4,5 @@ builddir
|
|||||||
*.kb
|
*.kb
|
||||||
*.obk
|
*.obk
|
||||||
!examples/*.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
|
## Build
|
||||||
|
|
||||||
```
|
```
|
||||||
|
./sqlite.sh
|
||||||
meson builddir
|
meson builddir
|
||||||
cd buildir
|
cd buildir
|
||||||
ninja
|
ninja
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
project('obelisk',
|
project('obelisk',
|
||||||
'c',
|
'c',
|
||||||
'cpp',
|
'cpp',
|
||||||
version : '1.0.3',
|
version : '1.0.4',
|
||||||
license : 'BSD-3-Clause',
|
license : 'BSD-3-Clause',
|
||||||
default_options : [
|
default_options : [
|
||||||
'warning_level=3',
|
'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