Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHCSVParser.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0830;
TargetAttributes = {
8DD76F960486AA7600D96B5E = {
LastSwiftMigration = 1130;
};
};
};
buildConfigurationList = 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "CHCSVParser" */;
compatibilityVersion = "Xcode 3.2";
Expand Down Expand Up @@ -225,23 +230,30 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
INSTALL_PATH = /usr/local/bin;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
PRODUCT_NAME = CHCSVParser;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
};
name = Debug;
};
1DEB927608733DD40010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_MODULES = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_MODEL_TUNING = G5;
INSTALL_PATH = /usr/local/bin;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
PRODUCT_NAME = CHCSVParser;
SWIFT_VERSION = 5.0;
};
name = Release;
};
Expand Down
9 changes: 0 additions & 9 deletions CHCSVParser/CHCSVParser/CHCSVParserOptions.swift

This file was deleted.

1 change: 1 addition & 0 deletions CHCSVParser/CHCSVParser/include/CHCSVParser.h
5 changes: 5 additions & 0 deletions CHCSVParser/CHCSVParser/include/module.modulemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module CHCSVParser {
umbrella header "CHCSVParser.h"
export *
module * { export * }
}
16 changes: 16 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// swift-tools-version:5.1
import PackageDescription

let package = Package(
name: "CHCSVParser",
products: [
.library(name: "CHCSVParser", targets: ["CHCSVParser"])
],
targets: [
.target(
name: "CHCSVParser",
dependencies: [],
path: "./CHCSVParser/CHCSVParser"
)
]
)