2022-06-07 05:20:24 -04:00
|
|
|
// Configuration settings file format documentation can be found at:
|
2023-05-29 18:08:47 -07:00
|
|
|
// https://developer.apple.com/documentation/xcode/adding-a-build-configuration-file-to-your-project/
|
2022-06-07 05:20:24 -04:00
|
|
|
|
2023-05-29 19:33:38 -07:00
|
|
|
MARKETING_VERSION = 0.4.0
|
|
|
|
|
CURRENT_PROJECT_VERSION = 4000
|
2022-06-07 05:20:24 -04:00
|
|
|
|
2023-06-01 07:38:26 -07:00
|
|
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS[config=Debug] = $(inherited) UNSTABLE MDC
|
|
|
|
|
GCC_PREPROCESSOR_DEFINITIONS[config=Debug] = $(inherited) MDC=1
|
2023-06-04 07:31:58 -07:00
|
|
|
INFOPLIST_PREPROCESSOR_DEFINITIONS[config=Debug] = $(inherited) MDC=1
|
2023-05-20 09:24:09 -07:00
|
|
|
|
2022-06-07 05:20:24 -04:00
|
|
|
// Vars to be overwritten by `CodeSigning.xcconfig` if exists
|
|
|
|
|
DEVELOPMENT_TEAM = S32Z3HMYVQ
|
2022-11-17 17:07:48 -08:00
|
|
|
ORG_IDENTIFIER = com.SideStore
|
2022-06-07 05:20:24 -04:00
|
|
|
|
|
|
|
|
// Codesigning settings defined optionally, see `CodeSigning.xcconfig.example`
|
|
|
|
|
#include? "CodeSigning.xcconfig"
|
|
|
|
|
|
|
|
|
|
ORG_PREFIX = $(ORG_IDENTIFIER)
|
|
|
|
|
|
2022-11-05 23:50:07 -07:00
|
|
|
PRODUCT_NAME = SideStore
|
2022-06-07 05:20:24 -04:00
|
|
|
|
2023-06-03 10:40:04 -07:00
|
|
|
PRODUCT_BUNDLE_IDENTIFIER = $(ORG_PREFIX).SideStore
|
2023-04-01 16:02:12 -07:00
|
|
|
// add team ID to bundle ID for debug builds since these will most likely be installed via Xcode
|
|
|
|
|
// SideStore will expect the team ID to be at the end of the bundle ID, but this doesn't happen when we install via Xcode
|
|
|
|
|
// we don't want to do this for release since those builds will most likely be installed via SideServer, which adds the team ID
|
|
|
|
|
PRODUCT_BUNDLE_IDENTIFIER[config=Debug] = $(ORG_PREFIX).SideStore.$(DEVELOPMENT_TEAM)
|
2022-06-07 05:20:24 -04:00
|
|
|
|
2023-04-01 16:02:12 -07:00
|
|
|
EXTENSION_PREFIX = $(PRODUCT_BUNDLE_IDENTIFIER)
|
|
|
|
|
APP_GROUP_IDENTIFIER = $(PRODUCT_BUNDLE_IDENTIFIER)
|
2022-06-07 05:20:24 -04:00
|
|
|
ICLOUD_CONTAINER_IDENTIFIER = iCloud.$(ORG_PREFIX).$(PROJECT_NAME)
|