fmdb icon indicating copy to clipboard operation
fmdb copied to clipboard

Fix Swift Package Manager support

Open woxtu opened this issue 4 years ago • 3 comments

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.

woxtu avatar Dec 22 '20 03:12 woxtu

Why not import them via #import "FMDB.h", or just what is needed?

ccgus avatar Dec 22 '20 17:12 ccgus

I import via @import FMDB;, did you try that.

Jeehut avatar Feb 16 '21 17:02 Jeehut

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.

GLinnik21 avatar Apr 15 '24 14:04 GLinnik21