mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 09:18:29 +00:00
Summary: ## Changes in this pull request A better version of https://github.com/Instagram/IGListKit/issues/1465 =) - SPM support with script-based generations. - added macOS Catalyst support ### Generate SPM layout 1. From **project's root** run: `bash scripts/generate_spm_sources_layout.sh` 2. Commit Changes Repeat those steps each time you delete/add the project's files. **Make sure** to have this CI step which will check that `generate_spm_sources_layout.sh` is not broken. Issue fixed: https://github.com/Instagram/IGListKit/issues/1368 #1406 ### Checklist - [ ] All tests pass. Demo project builds and runs. - [ ] I added tests, an experiment, or detailed why my change isn't tested. - [ ] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes. - [ ] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1487 Reviewed By: DimaVartanian, candance Differential Revision: D30428297 Pulled By: lorixx fbshipit-source-id: 655291ff03445dec9b0b8cd97916f0c88207e9a7
39 lines
1 KiB
Swift
39 lines
1 KiB
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "IGListKit",
|
|
platforms: [ .iOS(.v9),
|
|
.tvOS(.v9),
|
|
.macOS(.v10_15),
|
|
],
|
|
products: [
|
|
.library(name: "IGListDiffKit",
|
|
type: .static ,
|
|
targets: ["IGListDiffKit"]),
|
|
.library(name: "IGListKit",
|
|
type: .static,
|
|
targets: ["IGListKit"]),
|
|
.library(name: "IGListSwiftKit",
|
|
type: .static,
|
|
targets: ["IGListSwiftKit"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "IGListDiffKit",
|
|
path: "spm/Sources/IGListDiffKit"
|
|
),
|
|
.target(
|
|
name: "IGListKit",
|
|
dependencies: ["IGListDiffKit"],
|
|
path: "spm/Sources/IGListKit"
|
|
),
|
|
.target(
|
|
name: "IGListSwiftKit",
|
|
dependencies: ["IGListKit"],
|
|
path: "Source/IGListSwiftKit"
|
|
),
|
|
],
|
|
cLanguageStandard: .c11,
|
|
cxxLanguageStandard: .cxx11
|
|
)
|