Add SQLite system library package
This commit is contained in:
parent
77639572ea
commit
53e654532d
6 changed files with 153 additions and 0 deletions
5
Sources/DataLiteC/module.modulemap
Normal file
5
Sources/DataLiteC/module.modulemap
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
module DataLiteC [system] {
|
||||
header "shim.h"
|
||||
link "sqlite3"
|
||||
export *
|
||||
}
|
||||
6
Sources/DataLiteC/shim.h
Normal file
6
Sources/DataLiteC/shim.h
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#ifndef C_SQLITE_H
|
||||
#define C_SQLITE_H
|
||||
|
||||
#include <sqlite3.h>
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue