Skip to content

Commit

Permalink
Fix plaground dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
srdanrasic committed Apr 12, 2019
1 parent 6257fc1 commit 9fca23a
Show file tree
Hide file tree
Showing 13 changed files with 99 additions and 3 deletions.
65 changes: 65 additions & 0 deletions Bond.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@
objectVersion = 46;
objects = {

/* Begin PBXAggregateTarget section */
ECFF842B226122170095040B /* PlaygroundSupport */ = {
isa = PBXAggregateTarget;
buildConfigurationList = ECFF842E226122170095040B /* Build configuration list for PBXAggregateTarget "PlaygroundSupport" */;
buildPhases = (
ECFF8430226122320095040B /* ShellScript */,
);
dependencies = (
);
name = PlaygroundSupport;
productName = PlaygroundSupport;
};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
070FE2741F0138180031B7BD /* NSLayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C04D2A1E8F0B1D000077C8 /* NSLayoutConstraint.swift */; };
070FE2781F0138190031B7BD /* NSLayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C04D2A1E8F0B1D000077C8 /* NSLayoutConstraint.swift */; };
Expand Down Expand Up @@ -981,6 +995,9 @@
LastSwiftMigration = 1020;
ProvisioningStyle = Automatic;
};
ECFF842B226122170095040B = {
CreatedOnToolsVersion = 10.2;
};
};
};
buildConfigurationList = 16210A361D3EC474004AEDF3 /* Build configuration list for PBXProject "Bond" */;
Expand All @@ -1001,6 +1018,7 @@
16D30ED51D65D11900C2435D /* Bond-tvOS */,
16210A441D3EC474004AEDF3 /* BondTests */,
16887E361D744ABB00EDA099 /* Bond-App */,
ECFF842B226122170095040B /* PlaygroundSupport */,
);
};
/* End PBXProject section */
Expand All @@ -1023,6 +1041,26 @@
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
ECFF8430226122320095040B /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "mkdir -p \"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nif [[ $SDKROOT == *\"iPhone\"* ]]; then\n find \"${SRCROOT}/Carthage/Build/iOS/\" -name '*.framework' -exec cp -prv '{}' \"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}\" ';'\nelif [[ $SDKROOT == *\"AppleTV\"* ]]; then\n find \"${SRCROOT}/Carthage/Build/tvOS/\" -name '*.framework' -exec cp -prv '{}' \"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}\" ';'\nelif [[ $SDKROOT == *\"Mac\"* ]]; then\n find \"${SRCROOT}/Carthage/Build/Mac/\" -name '*.framework' -exec cp -prv '{}' \"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}\" ';'\nfi\n\n\n";
};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
16210A371D3EC474004AEDF3 /* Sources */ = {
isa = PBXSourcesBuildPhase;
Expand Down Expand Up @@ -1745,6 +1783,24 @@
};
name = Release;
};
ECFF842C226122170095040B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvos appletvsimulator";
TARGETED_DEVICE_FAMILY = "1,2,3,4";
};
name = Debug;
};
ECFF842D226122170095040B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvos appletvsimulator";
TARGETED_DEVICE_FAMILY = "1,2,3,4";
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
Expand Down Expand Up @@ -1802,6 +1858,15 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
ECFF842E226122170095040B /* Build configuration list for PBXAggregateTarget "PlaygroundSupport" */ = {
isa = XCConfigurationList;
buildConfigurations = (
ECFF842C226122170095040B /* Debug */,
ECFF842D226122170095040B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 16210A331D3EC474004AEDF3 /* Project object */;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-iOS" and "PlaygroundSupport"
///: targets with any iOS Simulator as a destination.

import UIKit
import Bond
import ReactiveKit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
//: Playground - noun: a place where people can play

///: Before running the playground, make sure to build "Bond-iOS" and "PlaygroundSupport"
///: targets with any iOS Simulator as a destination.

import Bond
import ReactiveKit
import PlaygroundSupport

// Play here!

// Array

let a = MutableObservableArray([1, 2, 3])
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-iOS" and "PlaygroundSupport"
///: targets with any iOS Simulator as a destination.

import Foundation
import UIKit
import Bond
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-iOS" and "PlaygroundSupport"
///: targets with any iOS Simulator as a destination.

import Foundation
import PlaygroundSupport
import UIKit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-iOS" and "PlaygroundSupport"
///: targets with any iOS Simulator as a destination.

import Foundation
import PlaygroundSupport
import UIKit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-iOS" and "PlaygroundSupport"
///: targets with any iOS Simulator as a destination.

import Foundation
import PlaygroundSupport
import UIKit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-iOS" and "PlaygroundSupport"
///: targets with any iOS Simulator as a destination.

import Foundation
import PlaygroundSupport
import UIKit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-iOS" and "PlaygroundSupport"
///: targets with any iOS Simulator as a destination.

import Foundation
import PlaygroundSupport
import UIKit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-macOS" and "PlaygroundSupport"
///: targets with Mac as a destination.

import Foundation
import PlaygroundSupport
import Cocoa
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-macOS" and "PlaygroundSupport"
///: targets with Mac as a destination.

import Foundation
import PlaygroundSupport
import Cocoa
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//: [Previous](@previous)

///: Before running the playground, make sure to build "Bond-macOS" and "PlaygroundSupport"
///: targets with Mac as a destination.

import Foundation

import PlaygroundSupport
Expand Down
2 changes: 1 addition & 1 deletion Playground-macOS.playground/contents.xcplayground
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<playground version='6.0' target-platform='macos' executeOnSourceChanges='false'>
<playground version='6.0' target-platform='macos'>
<pages>
<page name='NSTableView Bindings'/>
<page name='NSOutlineView Bindings'/>
Expand Down

0 comments on commit 9fca23a

Please sign in to comment.