-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
Description
Hello,
I have a project with a subproject both depending on SQLite.swift. Since the 0.9.0 version released the other day, the SQLite3 module. The problem is that since both the project and subproject import SQLite, the SQLite3 module map is redefined, something not allowed by Xcode.
I am using Carthage and while the carthage update/bootstrap command works well, once I try to build my project the following error appears:
ChildProject/Carthage/Checkouts/SQLite.swift/SQLite3/module.modulemap:1:8: error: redefinition of module 'SQLite3'
module SQLite3 [system] {
^
ParentProject/ChildProject/Carthage/Checkouts/SQLite.swift/SQLite3/module.modulemap:1:8: note: previously defined here
module SQLite3 [system] {
^
<unknown>:0: error: could not build Objective-C module 'SQLite'
Thanks in advance!