fmdb
fmdb copied to clipboard
Fix Swift Package Manager support
Hi,
The current release installed via SPM cannot import headers as follows:
#import <FMDB/FMDB.h>
This PR creates the public headers directory to fix that.
Why not import them via #import "FMDB.h", or just what is needed?
I import via @import FMDB;, did you try that.
Why not import them via #import "FMDB.h", or just what is needed?
I think because the #import syntax is inconsistent between SPM and CocoaPods.