diff --git a/Fingertips.h b/Fingertips.h deleted file mode 100644 index 7285380..0000000 --- a/Fingertips.h +++ /dev/null @@ -1,18 +0,0 @@ -// -// Fingertips.h -// Fingertips -// -// Copyright © 2016 Mapbox. All rights reserved. -// - -#import - -//! Project version number for Fingertips. -FOUNDATION_EXPORT double FingertipsVersionNumber; - -//! Project version string for Fingertips. -FOUNDATION_EXPORT const unsigned char FingertipsVersionString[]; - -#import - - diff --git a/Fingertips.podspec b/Fingertips.podspec index 04a9171..2255d01 100644 --- a/Fingertips.podspec +++ b/Fingertips.podspec @@ -14,7 +14,7 @@ Pod::Spec.new do |f| f.platform = :ios, '5.0' - f.source_files = '*.{h,m}' + f.source_files = 'Sources/Fingertips/*.{h,m}' f.requires_arc = true diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..40f5b56 --- /dev/null +++ b/Package.swift @@ -0,0 +1,15 @@ +// swift-tools-version:4.2 + import PackageDescription + + let package = Package( + name: "Fingertips", + products: [ + .library(name: "Fingertips", targets: ["Fingertips"]), + ], + targets: [ + .target( + name: "Fingertips", + dependencies: [], + publicHeadersPath: ".") + ] + ) diff --git a/MBFingerTipWindow.h b/Sources/Fingertips/MBFingerTipWindow.h similarity index 100% rename from MBFingerTipWindow.h rename to Sources/Fingertips/MBFingerTipWindow.h diff --git a/MBFingerTipWindow.m b/Sources/Fingertips/MBFingerTipWindow.m similarity index 100% rename from MBFingerTipWindow.m rename to Sources/Fingertips/MBFingerTipWindow.m