Skip to content

Commit

Permalink
Merge pull request 'develop' (#29) from develop into master
Browse files Browse the repository at this point in the history
  • Loading branch information
cromerc committed May 3, 2023
2 parents 20c9a0c + 2671e92 commit bac041d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 258,136 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ builddir
*.kb
*.obk
!examples/*.obk
sqlite/*.c
sqlite/*.h
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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',
Expand Down
11 changes: 11 additions & 0 deletions sqlite.sh
Original file line number Diff line number Diff line change
@@ -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
Loading

0 comments on commit bac041d

Please sign in to comment.