Skip to content

Commit

Permalink
builds
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanChannel committed Sep 26, 2024
1 parent 532c885 commit 645f602
Show file tree
Hide file tree
Showing 89 changed files with 182 additions and 5,640 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
run: xcodebuild build -scheme ReactiveObjC -sdk iphonesimulator17.5 -destination "OS=16.0,name=iPhone 13 Pro"

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ PlaygroundUtility.remap

# Carthage
Carthage/Build
.DS_Store
80 changes: 71 additions & 9 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,85 @@ let package = Package(
)
],
targets: [
.target(
.target(
name: "ReactiveObjC",
path: "ReactiveObjC",
exclude: [
// Exclude files not compatible with certain platforms
// You may need to manually specify these files
sources: [
"EXTRuntimeExtensions.m",
"NSArray+RACSequenceAdditions.m",
"NSData+RACSupport.m",
"NSDictionary+RACSequenceAdditions.m",
"NSEnumerator+RACSequenceAdditions.m",
"NSIndexSet+RACSequenceAdditions.m",
"NSInvocation+RACTypeParsing.m",
"NSNotificationCenter+RACSupport.m",
"NSObject+RACDeallocating.m",
"NSObject+RACDescription.m",
"NSObject+RACKVOWrapper.m",
"NSObject+RACLifting.m",
"NSObject+RACPropertySubscribing.m",
"NSObject+RACSelectorSignal.m",
"NSOrderedSet+RACSequenceAdditions.m",
"NSSet+RACSequenceAdditions.m",
"NSString+RACKeyPathUtilities.m",
"NSString+RACSequenceAdditions.m",
"NSString+RACSupport.m",
"NSURLConnection+RACSupport.m",
"NSUserDefaults+RACSupport.m",
"RACArraySequence.m",
"RACBehaviorSubject.m",
"RACBlockTrampoline.m",
"RACChannel.m",
"RACCommand.m",
// "RACCompoundDisposable.m",
"RACDelegateProxy.m",
"RACDisposable.m",
"RACDynamicSequence.m",
"RACDynamicSignal.m",
"RACEagerSequence.m",
"RACEmptySequence.m",
"RACEmptySignal.m",
"RACErrorSignal.m",
"RACEvent.m",
"RACGroupedSignal.m",
"RACImmediateScheduler.m",
"RACIndexSetSequence.m",
"RACKVOChannel.m",
"RACKVOProxy.m",
"RACKVOTrampoline.m",
"RACMulticastConnection.m",
// "RACPassthroughSubscriber.m",
"RACQueueScheduler.m",
"RACReplaySubject.m",
"RACReturnSignal.m",
"RACScheduler.m",
"RACScopedDisposable.m",
"RACSequence.m",
"RACSerialDisposable.m",
"RACSignal+Operations.m",
"RACSignal.m",
"RACSignalSequence.m",
"RACStream.m",
"RACStringSequence.m",
"RACSubject.m",
"RACSubscriber.m",
"RACSubscriptingAssignmentTrampoline.m",
"RACSubscriptionScheduler.m",
"RACTargetQueueScheduler.m",
"RACTestScheduler.m",
"RACTuple.m",
"RACTupleSequence.m",
"RACUnarySequence.m",
"RACUnit.m",
"RACValueTransformer.m",
],
publicHeadersPath: ".",
cSettings: [
.headerSearchPath("."),
.define("OS_OBJECT_USE_OBJC", to: "0"),
.define("OBJC_OLD_DISPATCH_PROTOTYPES", to: "0")
],
linkerSettings: [
.linkedFramework("Foundation")
.define("SWIFTPM", to: "1") // Defines SWIFTPM=1
]
)

],
swiftLanguageVersions: [.v5]
)
3,258 changes: 0 additions & 3,258 deletions ReactiveObjC.xcodeproj/project.pbxproj

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 645f602

Please sign in to comment.