Add support for storage

FossilOrigin-Name: 3c84d235e55a6f4481f3ccfb4007113716902901544f9a1f011723767ecaa1e4
This commit is contained in:
Jonathan Schleifer 2020-10-03 19:47:26 +00:00
parent 491d648e3a
commit 0893233697
12 changed files with 194 additions and 12 deletions

View file

@ -9,15 +9,16 @@ It is currently in early development stages.
## How to build it?
You need [ObjFW](https://objfw.nil.im) and
[ObjOpenSSL](https://fossil.nil.im/objopenssl) installed in order to do this.
You need [ObjFW](https://objfw.nil.im),
[ObjOpenSSL](https://fossil.nil.im/objopenssl) and
[ObjSQLite3](https://fossil.nil.im/objsqlite3) installed in order to do this.
ObjMatrix uses modern Objective-C, and hence cannot be compiled with GCC, but
only with Clang. So install Clang first and ObjFW will automatically pick it up.
You can install them all like this:
$ for i in objfw objopenssl objmatrix; do
$ for i in objfw objopenssl objsqlite3 objmatrix; do
fossil clone https://fossil.nil.im/$i $i.fossil &&
mkdir $i &&
cd $i &&