master
Kanken 2 years ago
parent e3c9c30985
commit ea5d1f135b

@ -2,9 +2,9 @@
<Workspace <Workspace
version = "1.0"> version = "1.0">
<FileRef <FileRef
location = "group:4forcesPack/Sources/4forcesPack/TestPlan.xctestplan"> location = "group:4forces/4forces/forefTest.xctestplan">
</FileRef> </FileRef>
<FileRef <FileRef
location = "group:4forcesPack"> location = "group:4forcesPack/Sources/4forcesPack/../../../4forces/4forces.xcodeproj">
</FileRef> </FileRef>
</Workspace> </Workspace>

@ -7,6 +7,7 @@
objects = { objects = {
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
7E4F935A2977FC1B0040569D /* forcesPack in Frameworks */ = {isa = PBXBuildFile; productRef = 7E4F93592977FC1B0040569D /* forcesPack */; };
7E7909262976D6B0002A14FC /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E7909252976D6B0002A14FC /* main.swift */; }; 7E7909262976D6B0002A14FC /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E7909252976D6B0002A14FC /* main.swift */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
@ -23,6 +24,7 @@
/* End PBXCopyFilesBuildPhase section */ /* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */ /* Begin PBXFileReference section */
7E4F93572977FB200040569D /* forcesPack */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = forcesPack; path = ../forcesPack; sourceTree = "<group>"; };
7E7909222976D6B0002A14FC /* 4forces */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = 4forces; sourceTree = BUILT_PRODUCTS_DIR; }; 7E7909222976D6B0002A14FC /* 4forces */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = 4forces; sourceTree = BUILT_PRODUCTS_DIR; };
7E7909252976D6B0002A14FC /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = "<group>"; }; 7E7909252976D6B0002A14FC /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */ /* End PBXFileReference section */
@ -32,17 +34,35 @@
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
7E4F935A2977FC1B0040569D /* forcesPack in Frameworks */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
/* End PBXFrameworksBuildPhase section */ /* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */ /* Begin PBXGroup section */
7E4F93522977F9FB0040569D /* Frameworks */ = {
isa = PBXGroup;
children = (
);
name = Frameworks;
sourceTree = "<group>";
};
7E4F93552977FAEE0040569D /* Packages */ = {
isa = PBXGroup;
children = (
7E4F93572977FB200040569D /* forcesPack */,
);
name = Packages;
sourceTree = "<group>";
};
7E7909192976D6B0002A14FC = { 7E7909192976D6B0002A14FC = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
7E4F93552977FAEE0040569D /* Packages */,
7E7909242976D6B0002A14FC /* 4forces */, 7E7909242976D6B0002A14FC /* 4forces */,
7E7909232976D6B0002A14FC /* Products */, 7E7909232976D6B0002A14FC /* Products */,
7E4F93522977F9FB0040569D /* Frameworks */,
); );
sourceTree = "<group>"; sourceTree = "<group>";
}; };
@ -78,6 +98,9 @@
dependencies = ( dependencies = (
); );
name = 4forces; name = 4forces;
packageProductDependencies = (
7E4F93592977FC1B0040569D /* forcesPack */,
);
productName = 4forces; productName = 4forces;
productReference = 7E7909222976D6B0002A14FC /* 4forces */; productReference = 7E7909222976D6B0002A14FC /* 4forces */;
productType = "com.apple.product-type.tool"; productType = "com.apple.product-type.tool";
@ -280,6 +303,13 @@
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
/* End XCConfigurationList section */ /* End XCConfigurationList section */
/* Begin XCSwiftPackageProductDependency section */
7E4F93592977FC1B0040569D /* forcesPack */ = {
isa = XCSwiftPackageProductDependency;
productName = forcesPack;
};
/* End XCSwiftPackageProductDependency section */
}; };
rootObject = 7E79091A2976D6B0002A14FC /* Project object */; rootObject = 7E79091A2976D6B0002A14FC /* Project object */;
} }

@ -0,0 +1,24 @@
{
"configurations" : [
{
"id" : "5CCA4828-E2A5-4FCE-87C6-A7DB1C045031",
"name" : "Configuration 1",
"options" : {
}
}
],
"defaultOptions" : {
"testTimeoutsEnabled" : true
},
"testTargets" : [
{
"target" : {
"containerPath" : "container:",
"identifier" : "forcesPackTests",
"name" : "forcesPackTests"
}
}
],
"version" : 1
}

@ -6,6 +6,14 @@
// //
import Foundation import Foundation
import forcesPack
print("Hello, World!") var b: Board = Board()
print(b.toString())
for _ in 0...3{
b.insertPeice(id: 0, row: 0)
print(b.toString())
}

Loading…
Cancel
Save