Add persistence layer
This commit is contained in:
parent
a5ee2edf5d
commit
0addde59d3
34 changed files with 2199 additions and 34 deletions
5
Sources/CSQLite/module.modulemap
Normal file
5
Sources/CSQLite/module.modulemap
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
module CSQLite [system] {
|
||||
header "shim.h"
|
||||
link "sqlite3"
|
||||
export *
|
||||
}
|
||||
1
Sources/CSQLite/shim.h
Normal file
1
Sources/CSQLite/shim.h
Normal file
|
|
@ -0,0 +1 @@
|
|||
#include <sqlite3.h>
|
||||
Loading…
Add table
Add a link
Reference in a new issue