Skip to content

Commit a2e7734

Browse files
committed
Add Errors.swift to proper targets
1 parent 139ca57 commit a2e7734

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

SQLite.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@
4747
03A65E951C6BB3030062603F /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE247B161C3F127200AE3E12 /* TestHelpers.swift */; };
4848
03A65E971C6BB3210062603F /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 03A65E961C6BB3210062603F /* libsqlite3.tbd */; };
4949
AA58505F1CC40BA70034C46D /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA58505E1CC40BA70034C46D /* Errors.swift */; };
50+
AA5850601CC4154B0034C46D /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA58505E1CC40BA70034C46D /* Errors.swift */; };
51+
AA5850611CC4154B0034C46D /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA58505E1CC40BA70034C46D /* Errors.swift */; };
5052
AA780B3D1CC201A700E0E95E /* ConnectionPool.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA780B3B1CC201A700E0E95E /* ConnectionPool.swift */; };
5153
AA780B3E1CC201A700E0E95E /* Dispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA780B3C1CC201A700E0E95E /* Dispatcher.swift */; };
5254
AA780B411CC202C800E0E95E /* ConnectionPoolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA780B3F1CC202B000E0E95E /* ConnectionPoolTests.swift */; };
@@ -56,8 +58,6 @@
5658
AA780B451CC202F300E0E95E /* Dispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA780B3C1CC201A700E0E95E /* Dispatcher.swift */; };
5759
AA780B461CC202F400E0E95E /* ConnectionPool.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA780B3B1CC201A700E0E95E /* ConnectionPool.swift */; };
5860
AA780B471CC202F400E0E95E /* Dispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA780B3C1CC201A700E0E95E /* Dispatcher.swift */; };
59-
AA780B481CC202F500E0E95E /* ConnectionPool.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA780B3B1CC201A700E0E95E /* ConnectionPool.swift */; };
60-
AA780B491CC202F500E0E95E /* Dispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA780B3C1CC201A700E0E95E /* Dispatcher.swift */; };
6161
EE247AD71C3F04ED00AE3E12 /* SQLite.h in Headers */ = {isa = PBXBuildFile; fileRef = EE247AD61C3F04ED00AE3E12 /* SQLite.h */; settings = {ATTRIBUTES = (Public, ); }; };
6262
EE247ADE1C3F04ED00AE3E12 /* SQLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE247AD31C3F04ED00AE3E12 /* SQLite.framework */; };
6363
EE247B031C3F06E900AE3E12 /* Blob.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE247AEE1C3F06E900AE3E12 /* Blob.swift */; };
@@ -428,16 +428,16 @@
428428
EE247AED1C3F06E900AE3E12 /* Core */ = {
429429
isa = PBXGroup;
430430
children = (
431+
EE247AEF1C3F06E900AE3E12 /* Connection.swift */,
431432
AA780B3B1CC201A700E0E95E /* ConnectionPool.swift */,
432433
AA780B3C1CC201A700E0E95E /* Dispatcher.swift */,
433-
EE91808D1C46E5230038162A /* SQLite-Bridging.h */,
434434
EE247AEE1C3F06E900AE3E12 /* Blob.swift */,
435-
EE247AEF1C3F06E900AE3E12 /* Connection.swift */,
436-
EE247AF01C3F06E900AE3E12 /* fts3_tokenizer.h */,
437-
EE247AF11C3F06E900AE3E12 /* SQLite-Bridging.m */,
438435
EE247AF21C3F06E900AE3E12 /* Statement.swift */,
439436
EE247AF31C3F06E900AE3E12 /* Value.swift */,
440437
AA58505E1CC40BA70034C46D /* Errors.swift */,
438+
EE247AF01C3F06E900AE3E12 /* fts3_tokenizer.h */,
439+
EE91808D1C46E5230038162A /* SQLite-Bridging.h */,
440+
EE247AF11C3F06E900AE3E12 /* SQLite-Bridging.m */,
441441
);
442442
path = Core;
443443
sourceTree = "<group>";
@@ -799,6 +799,7 @@
799799
03A65E7A1C6BB2F70062603F /* Statement.swift in Sources */,
800800
03A65E741C6BB2DA0062603F /* Helpers.swift in Sources */,
801801
03A65E831C6BB2FB0062603F /* Operators.swift in Sources */,
802+
AA5850611CC4154B0034C46D /* Errors.swift in Sources */,
802803
03A65E851C6BB2FB0062603F /* Schema.swift in Sources */,
803804
AA780B471CC202F400E0E95E /* Dispatcher.swift in Sources */,
804805
03A65E841C6BB2FB0062603F /* Query.swift in Sources */,
@@ -836,8 +837,6 @@
836837
isa = PBXSourcesBuildPhase;
837838
buildActionMask = 2147483647;
838839
files = (
839-
AA780B491CC202F500E0E95E /* Dispatcher.swift in Sources */,
840-
AA780B481CC202F500E0E95E /* ConnectionPool.swift in Sources */,
841840
);
842841
runOnlyForDeploymentPostprocessing = 0;
843842
};
@@ -909,6 +908,7 @@
909908
EE247B691C3F3FEC00AE3E12 /* Statement.swift in Sources */,
910909
EE247B641C3F3FDB00AE3E12 /* Helpers.swift in Sources */,
911910
EE247B721C3F3FEC00AE3E12 /* Operators.swift in Sources */,
911+
AA5850601CC4154B0034C46D /* Errors.swift in Sources */,
912912
EE247B741C3F3FEC00AE3E12 /* Schema.swift in Sources */,
913913
AA780B451CC202F300E0E95E /* Dispatcher.swift in Sources */,
914914
EE247B731C3F3FEC00AE3E12 /* Query.swift in Sources */,

0 commit comments

Comments
 (0)