Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate from CocoaPods to Swift Package Manager and support Xcode 14. #115

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
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
25 changes: 25 additions & 0 deletions Configs/Doughnut-Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
//
// Doughnut Podcast Client
// Copyright (C) 2017 - 2022 Chris Dyer
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//

// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

#include "Doughnut.xcconfig"

// Use AdHoc code signing for ad-hoc local development.
#include "DoughnutCodeSigning-AdHoc.xcconfig"
28 changes: 28 additions & 0 deletions Configs/Doughnut-Release.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// Doughnut Podcast Client
// Copyright (C) 2017 - 2022 Chris Dyer
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//

// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

#include "Doughnut.xcconfig"

// Use default code signing for application release.
#include "DoughnutCodeSigning-Release.xcconfig"

// Use AdHoc code signing instead for ad-hoc local development.
//#include "DoughnutCodeSigning-AdHoc.xcconfig"
22 changes: 22 additions & 0 deletions Configs/Doughnut.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//
// Doughnut Podcast Client
// Copyright (C) 2017 - 2022 Chris Dyer
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//

// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

ENABLE_HARDENED_RUNTIME = YES
25 changes: 25 additions & 0 deletions Configs/DoughnutCodeSigning-AdHoc.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
//
// Doughnut Podcast Client
// Copyright (C) 2017 - 2022 Chris Dyer
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//

// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

CODE_SIGN_ENTITLEMENTS = Doughnut/$(PRODUCT_NAME)-AdHoc.entitlements

CODE_SIGN_IDENTITY = -
CODE_SIGN_STYLE = Manual
26 changes: 26 additions & 0 deletions Configs/DoughnutCodeSigning-Release.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//
// Doughnut Podcast Client
// Copyright (C) 2017 - 2022 Chris Dyer
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//

// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

CODE_SIGN_ENTITLEMENTS = Doughnut/$(PRODUCT_NAME).entitlements

CODE_SIGN_IDENTITY = Mac Developer
CODE_SIGN_STYLE = Automatic
DEVELOPMENT_TEAM = Y8C2QHZQ3Q
Loading