Skip to content

Commit

Permalink
Update project structure to SPM structure
Browse files Browse the repository at this point in the history
  • Loading branch information
serjooo committed Apr 11, 2020
1 parent 6b24a5a commit a842527
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 9 deletions.
28 changes: 22 additions & 6 deletions CodableFirebase.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
CE7DD35D1F9CFA80000225C5 = {
isa = PBXGroup;
children = (
CE7DD3691F9CFA81000225C5 /* CodableFirebase */,
CE7DD3741F9CFA81000225C5 /* CodableFirebaseTests */,
DAA6B3AB2441B7D50013109D /* Sources */,
DAA6B3AC2441B7E90013109D /* Tests */,
CE7DD3681F9CFA81000225C5 /* Products */,
);
sourceTree = "<group>";
Expand Down Expand Up @@ -110,6 +110,22 @@
path = CodableFirebaseTests;
sourceTree = "<group>";
};
DAA6B3AB2441B7D50013109D /* Sources */ = {
isa = PBXGroup;
children = (
CE7DD3691F9CFA81000225C5 /* CodableFirebase */,
);
path = Sources;
sourceTree = "<group>";
};
DAA6B3AC2441B7E90013109D /* Tests */ = {
isa = PBXGroup;
children = (
CE7DD3741F9CFA81000225C5 /* CodableFirebaseTests */,
);
path = Tests;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand Down Expand Up @@ -381,7 +397,7 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = CodableFirebase/Info.plist;
INFOPLIST_FILE = Sources/CodableFirebase/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down Expand Up @@ -411,7 +427,7 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = CodableFirebase/Info.plist;
INFOPLIST_FILE = Sources/CodableFirebase/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand All @@ -437,7 +453,7 @@
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = CodableFirebaseTests/Info.plist;
INFOPLIST_FILE = Tests/CodableFirebaseTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.11;
Expand All @@ -460,7 +476,7 @@
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = CodableFirebaseTests/Info.plist;
INFOPLIST_FILE = Tests/CodableFirebaseTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.11;
Expand Down
5 changes: 2 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ let package = Package(
targets: [
.target(
name: "CodableFirebase",
path: "CodableFirebase"),
dependencies: []),
.testTarget(
name: "CodableFirebaseTests",
dependencies: ["CodableFirebase"],
path: "CodableFirebaseTests"),
dependencies: ["CodableFirebase"]),
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit a842527

Please sign in to comment.