feature/remove_sqlite #28
@ -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
|
||||||
|
11
sqlite.sh
Archivo ejecutable
11
sqlite.sh
Archivo ejecutable
@ -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
|
Cargando…
Referencia en una nueva incidencia
Block a user