diff --git a/CSwiftLog.podspec b/CSwiftLog.podspec index cd8e682..1f6a814 100644 --- a/CSwiftLog.podspec +++ b/CSwiftLog.podspec @@ -8,8 +8,9 @@ Pod::Spec.new do |s| s.name = 'CSwiftLog' - s.version = '0.1.0' - s.summary = 'A short description of CSwiftLog.' + s.version = '1.0.0' + s.summary = 'Logger for Xcode' + s.swift_version = '5.0' # This description is used to generate tags and improve search results. # * Think: What does it do? Why did you write it? What is the focus? @@ -21,11 +22,11 @@ Pod::Spec.new do |s| TODO: Add long description of the pod here. DESC - s.homepage = 'https://github.com/Andrew/CSwiftLog' + s.homepage = 'https://github.com/andrewfirsenko/CSwiftLog' # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' s.license = { :type => 'MIT', :file => 'LICENSE' } - s.author = { 'Andrew' => 'andrewfirsenko@gmail.com' } - s.source = { :git => 'https://github.com/Andrew/CSwiftLog.git', :tag => s.version.to_s } + s.author = { 'Andrew Firsenko' => 'andrewfirsenko@gmail.com' } + s.source = { :git => 'https://github.com/andrewfirsenko/CSwiftLog.git', :tag => s.version.to_s } # s.social_media_url = 'https://twitter.com/' s.ios.deployment_target = '9.0' diff --git a/CSwiftLog/Classes/Log+Extension.swift b/CSwiftLog/Classes/Log+Extension.swift new file mode 100644 index 0000000..37d09b9 --- /dev/null +++ b/CSwiftLog/Classes/Log+Extension.swift @@ -0,0 +1,22 @@ +// +// Log+Extensions.swift +// SwiftLog +// +// Created by Andrew on 04.10.2021. +// + +import Foundation + +extension Log { + + internal static func time(date: Date = Date(), style: Log.LogStyle = .short) -> String { + let df = DateFormatter() + switch style { + case .full: + df.dateFormat = "HH:mm:ss.SSS" + case .short: + df.dateFormat = "HH:mm:ss.SSS" + } + return df.string(from: date) + } +} diff --git a/CSwiftLog/Classes/Log.swift b/CSwiftLog/Classes/Log.swift new file mode 100644 index 0000000..46c257d --- /dev/null +++ b/CSwiftLog/Classes/Log.swift @@ -0,0 +1,104 @@ +// +// Log.swift +// SwiftLog +// +// Created by Andrew on 05.10.2021. +// + +import Foundation + +extension Log { + + // Default categories + public static let ui = Log(category: "UI") + public static let network = Log(category: "NETWORK") + + public enum LogType: String { + case error = "📕" + case warning = "📙" + case success = "📗" + case info = "📘" + case canceled = "📓" + } + + public enum LogStyle { + case full + case short + } + +} + +public class Log { + + private var category: String? = nil + + public init(category: String) { + self.category = category + } + + // MARK: With category + public func log( + tag: String? = nil, + _ message: String, + _ type: LogType = .info, + style: LogStyle = .short, + file: String = #file, + function: String = #function, + line: Int = #line + ) { + Log.log(tag: tag, message, type, style: style, category: self.category, file: file, function: function, line: line) + } + + // MARK: Not category + public static func log( + tag: String? = nil, + _ message: String, + _ type: LogType = .info, + style: LogStyle = .short, + file: String = #file, + function: String = #function, + line: Int = #line + ) { + log(tag: tag, message, type, style: style, category: nil, file: file, function: function, line: line) + } + + // MARK: Log + private static func log( + tag: String? = nil, + _ message: String, + _ type: LogType = .info, + style: LogStyle = .short, + category: String? = nil, + file: String = #file, + function: String = #function, + line: Int = #line + ) { + #if DEBUG + let fileName = (file as NSString).lastPathComponent + // Add time + var printString = time(style: style) + // Add Type icon + printString.append(" " + type.rawValue) + // Add fileName|line|function + switch style { + case .full: + printString.append(" " + "[\(fileName): \(line)] \(function) ==>") + case .short: + printString.append(" " + "==>") + } + // Add category & tag + if let category = category, let tag = tag { + printString.append(" " + "[\(category)/\(tag)]") + } else if let category = category { + printString.append(" " + "[\(category)]") + } else if let tag = tag { + printString.append(" " + "[\(tag)]") + } + // Add message + printString.append(" " + message) + + print(printString) + #endif + } + +} diff --git a/CSwiftLog/Classes/ReplaceMe.swift b/CSwiftLog/Classes/ReplaceMe.swift deleted file mode 100644 index e69de29..0000000 diff --git a/Example/CSwiftLog.xcodeproj/project.pbxproj b/Example/CSwiftLog.xcodeproj/project.pbxproj index e020a05..6506402 100644 --- a/Example/CSwiftLog.xcodeproj/project.pbxproj +++ b/Example/CSwiftLog.xcodeproj/project.pbxproj @@ -30,7 +30,7 @@ /* Begin PBXFileReference section */ 08876D370A21E22D0A49EFA3 /* Pods-CSwiftLog_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CSwiftLog_Example.release.xcconfig"; path = "Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.release.xcconfig"; sourceTree = ""; }; 2BA7B6C665B16D30A56DB9BE /* Pods_CSwiftLog_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CSwiftLog_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2C8ED527A922062649D6C582 /* CSwiftLog.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = CSwiftLog.podspec; path = ../CSwiftLog.podspec; sourceTree = ""; }; + 2C8ED527A922062649D6C582 /* CSwiftLog.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CSwiftLog.podspec; path = ../CSwiftLog.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2F386B42DAF5B352E0D9E462 /* Pods-CSwiftLog_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CSwiftLog_Tests.release.xcconfig"; path = "Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.release.xcconfig"; sourceTree = ""; }; 57E175D74331B542BAEF894B /* Pods-CSwiftLog_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CSwiftLog_Example.debug.xcconfig"; path = "Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.debug.xcconfig"; sourceTree = ""; }; 607FACD01AFB9204008FA782 /* CSwiftLog_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CSwiftLog_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -44,9 +44,9 @@ 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 76C37CC557D73FBF51864F9A /* Pods-CSwiftLog_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CSwiftLog_Tests.debug.xcconfig"; path = "Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.debug.xcconfig"; sourceTree = ""; }; - 849598E15FE136D49840B0CA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = ""; }; + 849598E15FE136D49840B0CA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; B9045BA65B81191FB163EE24 /* Pods_CSwiftLog_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CSwiftLog_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FA1FE9E3C3C7353066CBCFF4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; + FA1FE9E3C3C7353066CBCFF4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -77,7 +77,6 @@ 76C37CC557D73FBF51864F9A /* Pods-CSwiftLog_Tests.debug.xcconfig */, 2F386B42DAF5B352E0D9E462 /* Pods-CSwiftLog_Tests.release.xcconfig */, ); - name = Pods; path = Pods; sourceTree = ""; }; @@ -171,7 +170,7 @@ 607FACCC1AFB9204008FA782 /* Sources */, 607FACCD1AFB9204008FA782 /* Frameworks */, 607FACCE1AFB9204008FA782 /* Resources */, - 9288F5D29C51DE33E0B6F4D8 /* [CP] Embed Pods Frameworks */, + 1597022740477E37D6A524E1 /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -227,6 +226,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -262,44 +262,44 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 4A7839831CFCD769BE6EE8A0 /* [CP] Check Pods Manifest.lock */ = { + 1597022740477E37D6A524E1 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); - inputFileListPaths = ( - ); inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-frameworks.sh", + "${BUILT_PRODUCTS_DIR}/CSwiftLog/CSwiftLog.framework", ); + name = "[CP] Embed Pods Frameworks"; outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-CSwiftLog_Tests-checkManifestLockResult.txt", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CSwiftLog.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; - 9288F5D29C51DE33E0B6F4D8 /* [CP] Embed Pods Frameworks */ = { + 4A7839831CFCD769BE6EE8A0 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); + inputFileListPaths = ( + ); inputPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-frameworks.sh", - "${BUILT_PRODUCTS_DIR}/CSwiftLog/CSwiftLog.framework", + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( ); - name = "[CP] Embed Pods Frameworks"; outputPaths = ( - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CSwiftLog.framework", + "$(DERIVED_FILE_DIR)/Pods-CSwiftLog_Tests-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-frameworks.sh\"\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; C8698DD31A3E8C30CDEE6F85 /* [CP] Check Pods Manifest.lock */ = { diff --git a/Example/CSwiftLog.xcworkspace/contents.xcworkspacedata b/Example/CSwiftLog.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..0c6ecfa --- /dev/null +++ b/Example/CSwiftLog.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/Example/CSwiftLog.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Example/CSwiftLog.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Example/CSwiftLog.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Example/Podfile.lock b/Example/Podfile.lock new file mode 100644 index 0000000..82aa911 --- /dev/null +++ b/Example/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - CSwiftLog (0.1.0) + +DEPENDENCIES: + - CSwiftLog (from `../`) + +EXTERNAL SOURCES: + CSwiftLog: + :path: "../" + +SPEC CHECKSUMS: + CSwiftLog: 935a2275435a48fd0e69df7a20f1c7a0560e5288 + +PODFILE CHECKSUM: 202d93f7aed4a586b9ba6a4ba466e56d0a7f16b4 + +COCOAPODS: 1.11.2 diff --git a/Example/Pods/Local Podspecs/CSwiftLog.podspec.json b/Example/Pods/Local Podspecs/CSwiftLog.podspec.json new file mode 100644 index 0000000..6933ed8 --- /dev/null +++ b/Example/Pods/Local Podspecs/CSwiftLog.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "CSwiftLog", + "version": "0.1.0", + "summary": "A short description of CSwiftLog.", + "description": "TODO: Add long description of the pod here.", + "homepage": "https://github.com/Andrew/CSwiftLog", + "license": { + "type": "MIT", + "file": "LICENSE" + }, + "authors": { + "Andrew": "andrewfirsenko@gmail.com" + }, + "source": { + "git": "https://github.com/Andrew/CSwiftLog.git", + "tag": "0.1.0" + }, + "platforms": { + "ios": "9.0" + }, + "source_files": "CSwiftLog/Classes/**/*" +} diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock new file mode 100644 index 0000000..82aa911 --- /dev/null +++ b/Example/Pods/Manifest.lock @@ -0,0 +1,16 @@ +PODS: + - CSwiftLog (0.1.0) + +DEPENDENCIES: + - CSwiftLog (from `../`) + +EXTERNAL SOURCES: + CSwiftLog: + :path: "../" + +SPEC CHECKSUMS: + CSwiftLog: 935a2275435a48fd0e69df7a20f1c7a0560e5288 + +PODFILE CHECKSUM: 202d93f7aed4a586b9ba6a4ba466e56d0a7f16b4 + +COCOAPODS: 1.11.2 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 0000000..394c6e3 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,774 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 05A81B420F7B355DD337B6C0057AD4FA /* Log+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D4B3BD5C3A9CAC27DC082C52DE49356 /* Log+Extension.swift */; }; + 1852D3079192479094B75DCF4D1DC72B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + 43EAACA780A3D218FBEDD437C782F21C /* Log.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDA41D3AF16E89535BF74491FE08CE8 /* Log.swift */; }; + 44416266B221F919FD7559608ACB88D5 /* Pods-CSwiftLog_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 160FFA013C17D98654415594AB03C4AA /* Pods-CSwiftLog_Tests-dummy.m */; }; + 63DBDE347C16BC15249AFFAA3647BE55 /* Pods-CSwiftLog_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 203D15ACEE18DE233420454E0F6C3525 /* Pods-CSwiftLog_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 736319CC539B37014019EA7FCFA5F49E /* Pods-CSwiftLog_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FF125B2E49E6A8C81814DF19DBF64AF1 /* Pods-CSwiftLog_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7B1A3B6345807A9169970A0E4BAC4BC9 /* Pods-CSwiftLog_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F4E87ABAB8A2AFC5307B3C687BA172 /* Pods-CSwiftLog_Example-dummy.m */; }; + 8E195AD74256850424A181E4D9E756DA /* CSwiftLog-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C70A52DDAE0F9BA36240231BF09CFC5A /* CSwiftLog-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A045D8CB27652B6381235906C01A1705 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + C6A16BFFCB1CAF01AFB181166F10F898 /* CSwiftLog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8B3A6BC71081F6776A38BFB2FE5B33 /* CSwiftLog-dummy.m */; }; + EF9C94785D186CB916F8F1C39F71C740 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + AF4867AD1E90D12E123D774F68894E4F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E522DF159C0739AC56C78BF89A5E2A2C; + remoteInfo = "Pods-CSwiftLog_Example"; + }; + F35E1BA9C0FB3C70AD38151B9A5FFA16 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 111665422809BACADD970E7C3C0BF32E; + remoteInfo = CSwiftLog; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0BF0B02985D6CB1CF48BD1182A60BE1E /* Pods-CSwiftLog_Example */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-CSwiftLog_Example"; path = Pods_CSwiftLog_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 160FFA013C17D98654415594AB03C4AA /* Pods-CSwiftLog_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CSwiftLog_Tests-dummy.m"; sourceTree = ""; }; + 17859F7E2EEC67972DE42A493B3395A2 /* CSwiftLog.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CSwiftLog.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 192743936ADFA9CA3124298B26447A92 /* Pods-CSwiftLog_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CSwiftLog_Example-frameworks.sh"; sourceTree = ""; }; + 1A6255B094572D62231FC5787199EDFA /* CSwiftLog.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CSwiftLog.modulemap; sourceTree = ""; }; + 203D15ACEE18DE233420454E0F6C3525 /* Pods-CSwiftLog_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CSwiftLog_Example-umbrella.h"; sourceTree = ""; }; + 282076B4A57F2821DBB49D7D7FEA545A /* Pods-CSwiftLog_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CSwiftLog_Tests.release.xcconfig"; sourceTree = ""; }; + 2A3627D29CB9F70E82B63EE5DC43619B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2D14719530F5A81A28902A4E2946BC94 /* Pods-CSwiftLog_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CSwiftLog_Tests.debug.xcconfig"; sourceTree = ""; }; + 39C6D6A9185292AAD4F388FBA7037034 /* Pods-CSwiftLog_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CSwiftLog_Example.release.xcconfig"; sourceTree = ""; }; + 3BDA41D3AF16E89535BF74491FE08CE8 /* Log.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Log.swift; path = CSwiftLog/Classes/Log.swift; sourceTree = ""; }; + 3F631CE588D78D3059A36D41C4D97F80 /* CSwiftLog-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CSwiftLog-Info.plist"; sourceTree = ""; }; + 4E44FAFAA928B7E7C865CC1E55015768 /* Pods-CSwiftLog_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CSwiftLog_Tests-acknowledgements.plist"; sourceTree = ""; }; + 54F4E87ABAB8A2AFC5307B3C687BA172 /* Pods-CSwiftLog_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CSwiftLog_Example-dummy.m"; sourceTree = ""; }; + 65373BFB8FBD9BC3E50D162BC754BEAF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 69DA1F28C9E91FC6786304C194A4C1A0 /* Pods-CSwiftLog_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CSwiftLog_Example.debug.xcconfig"; sourceTree = ""; }; + 6A54C58D22849800084295CC4D30417A /* Pods-CSwiftLog_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CSwiftLog_Example.modulemap"; sourceTree = ""; }; + 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 7D4B3BD5C3A9CAC27DC082C52DE49356 /* Log+Extension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Log+Extension.swift"; path = "CSwiftLog/Classes/Log+Extension.swift"; sourceTree = ""; }; + 831833035955AA7DF8FABBCBB824CD56 /* Pods-CSwiftLog_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CSwiftLog_Example-acknowledgements.plist"; sourceTree = ""; }; + 91E2F7DD68F207A97BB299BFA1DA6407 /* Pods-CSwiftLog_Tests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-CSwiftLog_Tests"; path = Pods_CSwiftLog_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A93DEAA7BDDF17B5A093BB4E82C8D62C /* CSwiftLog */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CSwiftLog; path = CSwiftLog.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + AB51DB93E8C616CE8C3773972EEBCE67 /* CSwiftLog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CSwiftLog.release.xcconfig; sourceTree = ""; }; + BD214F77F7EB927E035FAB5E35B3FC31 /* Pods-CSwiftLog_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CSwiftLog_Tests-Info.plist"; sourceTree = ""; }; + C70A52DDAE0F9BA36240231BF09CFC5A /* CSwiftLog-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CSwiftLog-umbrella.h"; sourceTree = ""; }; + C883B4BD399BAF0742A2D6F35F9F9730 /* Pods-CSwiftLog_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CSwiftLog_Example-acknowledgements.markdown"; sourceTree = ""; }; + CA8B3A6BC71081F6776A38BFB2FE5B33 /* CSwiftLog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CSwiftLog-dummy.m"; sourceTree = ""; }; + D1B13ACB574EE5A3E96AEA0747687BF2 /* Pods-CSwiftLog_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CSwiftLog_Example-Info.plist"; sourceTree = ""; }; + D575F0EC671A5BC0B89FE631CEE54318 /* Pods-CSwiftLog_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CSwiftLog_Tests.modulemap"; sourceTree = ""; }; + D8A967C476771EF08FA9D24304280F04 /* CSwiftLog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CSwiftLog.debug.xcconfig; sourceTree = ""; }; + DDF12795FEE86979CCFF5EA4CDFF25EA /* CSwiftLog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CSwiftLog-prefix.pch"; sourceTree = ""; }; + EC99591B9FB0101D5F27351DEDAB1110 /* Pods-CSwiftLog_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CSwiftLog_Tests-acknowledgements.markdown"; sourceTree = ""; }; + FF125B2E49E6A8C81814DF19DBF64AF1 /* Pods-CSwiftLog_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CSwiftLog_Tests-umbrella.h"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 1A0A023450ECF22344C441C907D63C26 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + A045D8CB27652B6381235906C01A1705 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 27235CE914943B02E9B70199CC00A493 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + EF9C94785D186CB916F8F1C39F71C740 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D9F0407AFE548811419F66456356FBE2 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 1852D3079192479094B75DCF4D1DC72B /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 04C37A060E5BF2A228B99E86C753371A /* Pods-CSwiftLog_Example */ = { + isa = PBXGroup; + children = ( + 6A54C58D22849800084295CC4D30417A /* Pods-CSwiftLog_Example.modulemap */, + C883B4BD399BAF0742A2D6F35F9F9730 /* Pods-CSwiftLog_Example-acknowledgements.markdown */, + 831833035955AA7DF8FABBCBB824CD56 /* Pods-CSwiftLog_Example-acknowledgements.plist */, + 54F4E87ABAB8A2AFC5307B3C687BA172 /* Pods-CSwiftLog_Example-dummy.m */, + 192743936ADFA9CA3124298B26447A92 /* Pods-CSwiftLog_Example-frameworks.sh */, + D1B13ACB574EE5A3E96AEA0747687BF2 /* Pods-CSwiftLog_Example-Info.plist */, + 203D15ACEE18DE233420454E0F6C3525 /* Pods-CSwiftLog_Example-umbrella.h */, + 69DA1F28C9E91FC6786304C194A4C1A0 /* Pods-CSwiftLog_Example.debug.xcconfig */, + 39C6D6A9185292AAD4F388FBA7037034 /* Pods-CSwiftLog_Example.release.xcconfig */, + ); + name = "Pods-CSwiftLog_Example"; + path = "Target Support Files/Pods-CSwiftLog_Example"; + sourceTree = ""; + }; + 1155F00E5E37D57E5FDBC9103DC8D5A8 /* CSwiftLog */ = { + isa = PBXGroup; + children = ( + 3BDA41D3AF16E89535BF74491FE08CE8 /* Log.swift */, + 7D4B3BD5C3A9CAC27DC082C52DE49356 /* Log+Extension.swift */, + D42D6EFB911F80FA6EE177D787425E1C /* Pod */, + 47266989949893AC41BEAEFCABC5F07F /* Support Files */, + ); + name = CSwiftLog; + path = ../..; + sourceTree = ""; + }; + 47266989949893AC41BEAEFCABC5F07F /* Support Files */ = { + isa = PBXGroup; + children = ( + 1A6255B094572D62231FC5787199EDFA /* CSwiftLog.modulemap */, + CA8B3A6BC71081F6776A38BFB2FE5B33 /* CSwiftLog-dummy.m */, + 3F631CE588D78D3059A36D41C4D97F80 /* CSwiftLog-Info.plist */, + DDF12795FEE86979CCFF5EA4CDFF25EA /* CSwiftLog-prefix.pch */, + C70A52DDAE0F9BA36240231BF09CFC5A /* CSwiftLog-umbrella.h */, + D8A967C476771EF08FA9D24304280F04 /* CSwiftLog.debug.xcconfig */, + AB51DB93E8C616CE8C3773972EEBCE67 /* CSwiftLog.release.xcconfig */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/CSwiftLog"; + sourceTree = ""; + }; + 578452D2E740E91742655AC8F1636D1F /* iOS */ = { + isa = PBXGroup; + children = ( + 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 7A787287E6A21332B6425430DB82F4EF /* Pods-CSwiftLog_Tests */ = { + isa = PBXGroup; + children = ( + D575F0EC671A5BC0B89FE631CEE54318 /* Pods-CSwiftLog_Tests.modulemap */, + EC99591B9FB0101D5F27351DEDAB1110 /* Pods-CSwiftLog_Tests-acknowledgements.markdown */, + 4E44FAFAA928B7E7C865CC1E55015768 /* Pods-CSwiftLog_Tests-acknowledgements.plist */, + 160FFA013C17D98654415594AB03C4AA /* Pods-CSwiftLog_Tests-dummy.m */, + BD214F77F7EB927E035FAB5E35B3FC31 /* Pods-CSwiftLog_Tests-Info.plist */, + FF125B2E49E6A8C81814DF19DBF64AF1 /* Pods-CSwiftLog_Tests-umbrella.h */, + 2D14719530F5A81A28902A4E2946BC94 /* Pods-CSwiftLog_Tests.debug.xcconfig */, + 282076B4A57F2821DBB49D7D7FEA545A /* Pods-CSwiftLog_Tests.release.xcconfig */, + ); + name = "Pods-CSwiftLog_Tests"; + path = "Target Support Files/Pods-CSwiftLog_Tests"; + sourceTree = ""; + }; + A1FB1C71E6BD7B9C99CC6A3050517969 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 04C37A060E5BF2A228B99E86C753371A /* Pods-CSwiftLog_Example */, + 7A787287E6A21332B6425430DB82F4EF /* Pods-CSwiftLog_Tests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + B39AA45991FD1CAAA2E095734BEC37BE /* Products */ = { + isa = PBXGroup; + children = ( + A93DEAA7BDDF17B5A093BB4E82C8D62C /* CSwiftLog */, + 0BF0B02985D6CB1CF48BD1182A60BE1E /* Pods-CSwiftLog_Example */, + 91E2F7DD68F207A97BB299BFA1DA6407 /* Pods-CSwiftLog_Tests */, + ); + name = Products; + sourceTree = ""; + }; + CF1408CF629C7361332E53B88F7BD30C = { + isa = PBXGroup; + children = ( + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + D564C1CD934EFEE855A838536C8960CA /* Development Pods */, + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, + B39AA45991FD1CAAA2E095734BEC37BE /* Products */, + A1FB1C71E6BD7B9C99CC6A3050517969 /* Targets Support Files */, + ); + sourceTree = ""; + }; + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 578452D2E740E91742655AC8F1636D1F /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + D42D6EFB911F80FA6EE177D787425E1C /* Pod */ = { + isa = PBXGroup; + children = ( + 17859F7E2EEC67972DE42A493B3395A2 /* CSwiftLog.podspec */, + 65373BFB8FBD9BC3E50D162BC754BEAF /* LICENSE */, + 2A3627D29CB9F70E82B63EE5DC43619B /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + D564C1CD934EFEE855A838536C8960CA /* Development Pods */ = { + isa = PBXGroup; + children = ( + 1155F00E5E37D57E5FDBC9103DC8D5A8 /* CSwiftLog */, + ); + name = "Development Pods"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 0C81635D57B59F34C1CC64F22D2CDA13 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 63DBDE347C16BC15249AFFAA3647BE55 /* Pods-CSwiftLog_Example-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D8D2B8EDA1943C53E4B6AE8513A0DD78 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 736319CC539B37014019EA7FCFA5F49E /* Pods-CSwiftLog_Tests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FEB8FF9DA8ED2BF6E647D7AE2049DEED /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8E195AD74256850424A181E4D9E756DA /* CSwiftLog-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 111665422809BACADD970E7C3C0BF32E /* CSwiftLog */ = { + isa = PBXNativeTarget; + buildConfigurationList = 20F08FBB29602BF694B0763CC1D1F927 /* Build configuration list for PBXNativeTarget "CSwiftLog" */; + buildPhases = ( + FEB8FF9DA8ED2BF6E647D7AE2049DEED /* Headers */, + B3689143A86F9E132A2E67B58C072E7B /* Sources */, + 1A0A023450ECF22344C441C907D63C26 /* Frameworks */, + FB379E759EE848BDA225A51702A8835C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CSwiftLog; + productName = CSwiftLog; + productReference = A93DEAA7BDDF17B5A093BB4E82C8D62C /* CSwiftLog */; + productType = "com.apple.product-type.framework"; + }; + E522DF159C0739AC56C78BF89A5E2A2C /* Pods-CSwiftLog_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = C6274AF2B5A6542C7BEC6C745BEEC72A /* Build configuration list for PBXNativeTarget "Pods-CSwiftLog_Example" */; + buildPhases = ( + 0C81635D57B59F34C1CC64F22D2CDA13 /* Headers */, + 51DB9AA8C9BC76A3CFA7E89828F329C1 /* Sources */, + D9F0407AFE548811419F66456356FBE2 /* Frameworks */, + 946767CD170E506BF95315E9A76903C9 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 9BC1BB94BC496313C5287DE853A450C7 /* PBXTargetDependency */, + ); + name = "Pods-CSwiftLog_Example"; + productName = Pods_CSwiftLog_Example; + productReference = 0BF0B02985D6CB1CF48BD1182A60BE1E /* Pods-CSwiftLog_Example */; + productType = "com.apple.product-type.framework"; + }; + E723CD66A83F072635DC7E3F06A06320 /* Pods-CSwiftLog_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8850379CA372EABFC60237CC457C01C4 /* Build configuration list for PBXNativeTarget "Pods-CSwiftLog_Tests" */; + buildPhases = ( + D8D2B8EDA1943C53E4B6AE8513A0DD78 /* Headers */, + 462FE5C0F540091B45F8A449AF549FC9 /* Sources */, + 27235CE914943B02E9B70199CC00A493 /* Frameworks */, + 4C81B84CC42E7612D823E2BD14E983B3 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 80A987A9D895D996741CA9FEBA8329AD /* PBXTargetDependency */, + ); + name = "Pods-CSwiftLog_Tests"; + productName = Pods_CSwiftLog_Tests; + productReference = 91E2F7DD68F207A97BB299BFA1DA6407 /* Pods-CSwiftLog_Tests */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + BFDFE7DC352907FC980B868725387E98 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1240; + LastUpgradeCheck = 1240; + }; + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = CF1408CF629C7361332E53B88F7BD30C; + productRefGroup = B39AA45991FD1CAAA2E095734BEC37BE /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 111665422809BACADD970E7C3C0BF32E /* CSwiftLog */, + E522DF159C0739AC56C78BF89A5E2A2C /* Pods-CSwiftLog_Example */, + E723CD66A83F072635DC7E3F06A06320 /* Pods-CSwiftLog_Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 4C81B84CC42E7612D823E2BD14E983B3 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 946767CD170E506BF95315E9A76903C9 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FB379E759EE848BDA225A51702A8835C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 462FE5C0F540091B45F8A449AF549FC9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 44416266B221F919FD7559608ACB88D5 /* Pods-CSwiftLog_Tests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 51DB9AA8C9BC76A3CFA7E89828F329C1 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7B1A3B6345807A9169970A0E4BAC4BC9 /* Pods-CSwiftLog_Example-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B3689143A86F9E132A2E67B58C072E7B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C6A16BFFCB1CAF01AFB181166F10F898 /* CSwiftLog-dummy.m in Sources */, + 43EAACA780A3D218FBEDD437C782F21C /* Log.swift in Sources */, + 05A81B420F7B355DD337B6C0057AD4FA /* Log+Extension.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 80A987A9D895D996741CA9FEBA8329AD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-CSwiftLog_Example"; + target = E522DF159C0739AC56C78BF89A5E2A2C /* Pods-CSwiftLog_Example */; + targetProxy = AF4867AD1E90D12E123D774F68894E4F /* PBXContainerItemProxy */; + }; + 9BC1BB94BC496313C5287DE853A450C7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CSwiftLog; + target = 111665422809BACADD970E7C3C0BF32E /* CSwiftLog */; + targetProxy = F35E1BA9C0FB3C70AD38151B9A5FFA16 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 1E5D82222512BBBD597B56B41FC165E0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2D14719530F5A81A28902A4E2946BC94 /* Pods-CSwiftLog_Tests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 6C5D7ACA3C1F4F08DD55E59F4EEF5D1F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 282076B4A57F2821DBB49D7D7FEA545A /* Pods-CSwiftLog_Tests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 6D6CB31B52C50157CDE403DBF61E30C2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 39C6D6A9185292AAD4F388FBA7037034 /* Pods-CSwiftLog_Example.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + A6C2BB6ADAA680F2F46499A8865B7349 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AB51DB93E8C616CE8C3773972EEBCE67 /* CSwiftLog.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/CSwiftLog/CSwiftLog-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CSwiftLog/CSwiftLog-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/CSwiftLog/CSwiftLog.modulemap"; + PRODUCT_MODULE_NAME = CSwiftLog; + PRODUCT_NAME = CSwiftLog; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + D4644F5E97D4442FC50B7D6C50AF5E72 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D8A967C476771EF08FA9D24304280F04 /* CSwiftLog.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/CSwiftLog/CSwiftLog-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CSwiftLog/CSwiftLog-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/CSwiftLog/CSwiftLog.modulemap"; + PRODUCT_MODULE_NAME = CSwiftLog; + PRODUCT_NAME = CSwiftLog; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + F746C27B0B05117F39D9E90634044122 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 69DA1F28C9E91FC6786304C194A4C1A0 /* Pods-CSwiftLog_Example.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 20F08FBB29602BF694B0763CC1D1F927 /* Build configuration list for PBXNativeTarget "CSwiftLog" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D4644F5E97D4442FC50B7D6C50AF5E72 /* Debug */, + A6C2BB6ADAA680F2F46499A8865B7349 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */, + CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 8850379CA372EABFC60237CC457C01C4 /* Build configuration list for PBXNativeTarget "Pods-CSwiftLog_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1E5D82222512BBBD597B56B41FC165E0 /* Debug */, + 6C5D7ACA3C1F4F08DD55E59F4EEF5D1F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C6274AF2B5A6542C7BEC6C745BEEC72A /* Build configuration list for PBXNativeTarget "Pods-CSwiftLog_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F746C27B0B05117F39D9E90634044122 /* Debug */, + 6D6CB31B52C50157CDE403DBF61E30C2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; +} diff --git a/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-Info.plist b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-Info.plist new file mode 100644 index 0000000..161a9d3 --- /dev/null +++ b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.1.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-dummy.m b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-dummy.m new file mode 100644 index 0000000..7f29493 --- /dev/null +++ b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_CSwiftLog : NSObject +@end +@implementation PodsDummy_CSwiftLog +@end diff --git a/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-prefix.pch b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-umbrella.h b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-umbrella.h new file mode 100644 index 0000000..8eff1aa --- /dev/null +++ b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double CSwiftLogVersionNumber; +FOUNDATION_EXPORT const unsigned char CSwiftLogVersionString[]; + diff --git a/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.debug.xcconfig b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.debug.xcconfig new file mode 100644 index 0000000..4b209da --- /dev/null +++ b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.debug.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.modulemap b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.modulemap new file mode 100644 index 0000000..149a5ea --- /dev/null +++ b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.modulemap @@ -0,0 +1,6 @@ +framework module CSwiftLog { + umbrella header "CSwiftLog-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.release.xcconfig b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.release.xcconfig new file mode 100644 index 0000000..4b209da --- /dev/null +++ b/Example/Pods/Target Support Files/CSwiftLog/CSwiftLog.release.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-Info.plist b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-acknowledgements.markdown new file mode 100644 index 0000000..33c0b9c --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-acknowledgements.markdown @@ -0,0 +1,26 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## CSwiftLog + +Copyright (c) 2021 Andrew + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-acknowledgements.plist new file mode 100644 index 0000000..0385521 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-acknowledgements.plist @@ -0,0 +1,58 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2021 Andrew <andrewfirsenko@gmail.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + License + MIT + Title + CSwiftLog + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-dummy.m b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-dummy.m new file mode 100644 index 0000000..93523ea --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_CSwiftLog_Example : NSObject +@end +@implementation PodsDummy_Pods_CSwiftLog_Example +@end diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-frameworks.sh new file mode 100755 index 0000000..dd6d445 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-frameworks.sh @@ -0,0 +1,186 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +function on_error { + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" +} +trap 'on_error $LINENO' ERR + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +BCSYMBOLMAP_DIR="BCSymbolMaps" + + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then + # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied + find "${source}/${BCSYMBOLMAP_DIR}" -name "*.bcsymbolmap"|while read f; do + echo "Installing $f" + install_bcsymbolmap "$f" "$destination" + rm "$f" + done + rmdir "${source}/${BCSYMBOLMAP_DIR}" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + elif [ -L "${binary}" ]; then + echo "Destination binary is symlinked..." + dirname="$(dirname "${binary}")" + binary="${dirname}/$(readlink "${binary}")" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + warn_missing_arch=${2:-true} + if [ -r "$source" ]; then + # Copy the dSYM into the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .dSYM "$source")" + binary_name="$(ls "$source/Contents/Resources/DWARF")" + binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" + + # Strip invalid architectures from the dSYM. + if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then + strip_invalid_archs "$binary" "$warn_missing_arch" + fi + if [[ $STRIP_BINARY_RETVAL == 0 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + mkdir -p "${DWARF_DSYM_FOLDER_PATH}" + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" + fi + fi +} + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + warn_missing_arch=${2:-true} + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + if [[ "$warn_missing_arch" == "true" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + fi + STRIP_BINARY_RETVAL=1 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=0 +} + +# Copies the bcsymbolmap files of a vendored framework +install_bcsymbolmap() { + local bcsymbolmap_path="$1" + local destination="${BUILT_PRODUCTS_DIR}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identity + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/CSwiftLog/CSwiftLog.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/CSwiftLog/CSwiftLog.framework" +fi +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-umbrella.h b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-umbrella.h new file mode 100644 index 0000000..889088f --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_CSwiftLog_ExampleVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_CSwiftLog_ExampleVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.debug.xcconfig new file mode 100644 index 0000000..3df4d0a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.debug.xcconfig @@ -0,0 +1,15 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog/CSwiftLog.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "CSwiftLog" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.modulemap b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.modulemap new file mode 100644 index 0000000..ce9e505 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.modulemap @@ -0,0 +1,6 @@ +framework module Pods_CSwiftLog_Example { + umbrella header "Pods-CSwiftLog_Example-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.release.xcconfig new file mode 100644 index 0000000..3df4d0a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Example/Pods-CSwiftLog_Example.release.xcconfig @@ -0,0 +1,15 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog/CSwiftLog.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "CSwiftLog" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-Info.plist b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-acknowledgements.markdown new file mode 100644 index 0000000..102af75 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-acknowledgements.plist new file mode 100644 index 0000000..7acbad1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-dummy.m b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-dummy.m new file mode 100644 index 0000000..e78970c --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_CSwiftLog_Tests : NSObject +@end +@implementation PodsDummy_Pods_CSwiftLog_Tests +@end diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-umbrella.h b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-umbrella.h new file mode 100644 index 0000000..4b41c21 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_CSwiftLog_TestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_CSwiftLog_TestsVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.debug.xcconfig new file mode 100644 index 0000000..b9e6dab --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.debug.xcconfig @@ -0,0 +1,11 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog/CSwiftLog.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "CSwiftLog" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.modulemap b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.modulemap new file mode 100644 index 0000000..1e03bdd --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_CSwiftLog_Tests { + umbrella header "Pods-CSwiftLog_Tests-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.release.xcconfig new file mode 100644 index 0000000..b9e6dab --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-CSwiftLog_Tests/Pods-CSwiftLog_Tests.release.xcconfig @@ -0,0 +1,11 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CSwiftLog/CSwiftLog.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "CSwiftLog" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES