diff --git a/Concurrency.xcodeproj/project.pbxproj b/Concurrency.xcodeproj/project.pbxproj index b0cab59..47fe2a7 100644 --- a/Concurrency.xcodeproj/project.pbxproj +++ b/Concurrency.xcodeproj/project.pbxproj @@ -78,7 +78,6 @@ "Concurrency::Concurrency::Product" /* Concurrency.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Concurrency.framework; sourceTree = BUILT_PRODUCTS_DIR; }; "Concurrency::ConcurrencyTests::Product" /* ConcurrencyTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; path = ConcurrencyTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; "Concurrency::ObjCBridges::Product" /* ObjCBridges.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = ObjCBridges.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - OBJ_11 /* Concurrency-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Concurrency-Bridging-Header.h"; sourceTree = ""; }; OBJ_12 /* AtomicBool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicBool.swift; sourceTree = ""; }; OBJ_13 /* AtomicInt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicInt.swift; sourceTree = ""; }; OBJ_14 /* AtomicReference.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicReference.swift; sourceTree = ""; }; @@ -138,7 +137,6 @@ OBJ_10 /* Concurrency */ = { isa = PBXGroup; children = ( - OBJ_11 /* Concurrency-Bridging-Header.h */, OBJ_12 /* AtomicBool.swift */, OBJ_13 /* AtomicInt.swift */, OBJ_14 /* AtomicReference.swift */, @@ -220,7 +218,7 @@ name = Products; sourceTree = BUILT_PRODUCTS_DIR; }; - OBJ_5 /* */ = { + OBJ_5 = { isa = PBXGroup; children = ( OBJ_6 /* Package.swift */, @@ -235,7 +233,6 @@ OBJ_44 /* CONTRIBUTING.md */, OBJ_45 /* LICENSE.txt */, ); - name = ""; sourceTree = ""; }; OBJ_7 /* Configs */ = { @@ -340,7 +337,7 @@ English, en, ); - mainGroup = OBJ_5 /* */; + mainGroup = OBJ_5; productRefGroup = OBJ_36 /* Products */; projectDirPath = ""; projectRoot = ""; @@ -502,6 +499,7 @@ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_OBJC_BRIDGING_HEADER = ""; SWIFT_VERSION = 4.0; TARGET_NAME = Concurrency; }; @@ -532,6 +530,7 @@ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_OBJC_BRIDGING_HEADER = ""; SWIFT_VERSION = 4.0; TARGET_NAME = Concurrency; }; diff --git a/Sources/Concurrency/Concurrency-Bridging-Header.h b/Sources/Concurrency/Concurrency-Bridging-Header.h deleted file mode 100644 index 2a05e68..0000000 --- a/Sources/Concurrency/Concurrency-Bridging-Header.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// Copyright (c) 2018. Uber Technologies -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -#ifndef Concurrency_Bridging_Header_h -#define Concurrency_Bridging_Header_h - -#import "AtomicBridges.h" - - -#endif /* Concurrency_Bridging_Header_h */