Skip to content

Commit

Permalink
Remove module map
Browse files Browse the repository at this point in the history
  • Loading branch information
sbarow committed Oct 8, 2019
1 parent 9bdd52b commit 3324a10
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.

This file was deleted.

13 changes: 4 additions & 9 deletions Concurrency.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@
OBJ_21 /* Task.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Task.swift; sourceTree = "<group>"; };
OBJ_23 /* AtomicBridges.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AtomicBridges.m; sourceTree = "<group>"; };
OBJ_25 /* AtomicBridges.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AtomicBridges.h; sourceTree = "<group>"; };
OBJ_26 /* module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = "/Users/cameronmcgorian/Documents/dev/swift-concurrency/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges/module.modulemap"; sourceTree = "<group>"; };
OBJ_29 /* AtomicBoolTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicBoolTests.swift; sourceTree = "<group>"; };
OBJ_30 /* AtomicIntTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicIntTests.swift; sourceTree = "<group>"; };
OBJ_31 /* AtomicReferenceTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AtomicReferenceTests.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -175,7 +174,6 @@
isa = PBXGroup;
children = (
OBJ_25 /* AtomicBridges.h */,
OBJ_26 /* module.modulemap */,
);
path = include;
sourceTree = "<group>";
Expand Down Expand Up @@ -220,7 +218,7 @@
name = Products;
sourceTree = BUILT_PRODUCTS_DIR;
};
OBJ_5 /* */ = {
OBJ_5 = {
isa = PBXGroup;
children = (
OBJ_6 /* Package.swift */,
Expand All @@ -235,7 +233,6 @@
OBJ_44 /* CONTRIBUTING.md */,
OBJ_45 /* LICENSE.txt */,
);
name = "";
sourceTree = "<group>";
};
OBJ_7 /* Configs */ = {
Expand Down Expand Up @@ -340,7 +337,7 @@
English,
en,
);
mainGroup = OBJ_5 /* */;
mainGroup = OBJ_5;
productRefGroup = OBJ_36 /* Products */;
projectDirPath = "";
projectRoot = "";
Expand Down Expand Up @@ -489,14 +486,13 @@
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/Sources/ObjCBridges/include",
"$(SRCROOT)/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges",
);
INFOPLIST_FILE = Concurrency.xcodeproj/Concurrency_Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
OTHER_CFLAGS = "$(inherited)";
OTHER_LDFLAGS = "$(inherited)";
OTHER_SWIFT_FLAGS = "$(inherited) -Xcc -fmodule-map-file=$(SRCROOT)/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges/module.modulemap";
OTHER_SWIFT_FLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = Concurrency;
PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand All @@ -519,14 +515,13 @@
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/Sources/ObjCBridges/include",
"$(SRCROOT)/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges",
);
INFOPLIST_FILE = Concurrency.xcodeproj/Concurrency_Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
OTHER_CFLAGS = "$(inherited)";
OTHER_LDFLAGS = "$(inherited)";
OTHER_SWIFT_FLAGS = "$(inherited) -Xcc -fmodule-map-file=$(SRCROOT)/Concurrency.xcodeproj/GeneratedModuleMap/ObjCBridges/module.modulemap";
OTHER_SWIFT_FLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = Concurrency;
PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down
1 change: 0 additions & 1 deletion Sources/Concurrency/AtomicInt.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import Foundation
import libkern
import ObjCBridges

/// A concurrency utility class that supports locking-free synchronization on mutating an integer
/// value. Unlike using a lock, concurrent read and write accesses to this class is allowed. At
Expand Down
1 change: 0 additions & 1 deletion Sources/Concurrency/AtomicReference.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import Foundation
import libkern
import ObjCBridges

/// A concurrency utility class that supports locking-free synchronization on mutating an object
/// reference. Unlike using a lock, concurrent read and write accesses to this class is allowed. At
Expand Down

0 comments on commit 3324a10

Please sign in to comment.