From 11eef8097f62ab99830528183992d5d5bf38a7d4 Mon Sep 17 00:00:00 2001 From: Roy Marmelstein Date: Thu, 14 Jan 2016 22:40:46 +0100 Subject: [PATCH] Moving module map --- Zip.xcodeproj/project.pbxproj | 4 ++-- Zip/module.modulemap | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 Zip/module.modulemap diff --git a/Zip.xcodeproj/project.pbxproj b/Zip.xcodeproj/project.pbxproj index c93446d..967d950 100644 --- a/Zip.xcodeproj/project.pbxproj +++ b/Zip.xcodeproj/project.pbxproj @@ -74,7 +74,7 @@ 3430BB231C484A65001143B5 /* pwd2key.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pwd2key.h; sourceTree = ""; }; 3430BB241C484A65001143B5 /* sha1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sha1.c; sourceTree = ""; }; 3430BB251C484A65001143B5 /* sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha1.h; sourceTree = ""; }; - 3430BB3D1C484CC4001143B5 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = ""; }; + 3430BB3E1C484D39001143B5 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = Zip/module.modulemap; sourceTree = SOURCE_ROOT; }; 3430F61F1C45C805007473A6 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; 3430F6221C45C851007473A6 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypt.h; sourceTree = ""; }; 3430F6241C45C851007473A6 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ioapi.c; sourceTree = ""; }; @@ -147,8 +147,8 @@ 3430F6221C45C851007473A6 /* crypt.h */, 3430F6241C45C851007473A6 /* ioapi.c */, 3430F6251C45C851007473A6 /* ioapi.h */, - 3430BB3D1C484CC4001143B5 /* module.modulemap */, 3430F6291C45C851007473A6 /* unzip.c */, + 3430BB3E1C484D39001143B5 /* module.modulemap */, 3430F62A1C45C851007473A6 /* unzip.h */, 3430F62B1C45C851007473A6 /* zip.c */, 3430F62C1C45C851007473A6 /* zip.h */, diff --git a/Zip/module.modulemap b/Zip/module.modulemap new file mode 100644 index 0000000..45a6e58 --- /dev/null +++ b/Zip/module.modulemap @@ -0,0 +1,5 @@ +module minizip [system][extern_c] { + header "unzip.h" + header "zip.h" + export * +} -- 2.26.2