From 9ea35c9174778d6cef722c64e9671795ef54207a Mon Sep 17 00:00:00 2001 From: bjornoleh <63544115+bjornoleh@users.noreply.github.com> Date: Thu, 28 Mar 2024 16:16:19 +0100 Subject: [PATCH 1/2] Config.xcconfig: #include? "../../ConfigOverride.xcconfig" Allow config override file to take action from two directories up, to align with Loop and other DIY projects. --- Config.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config.xcconfig b/Config.xcconfig index eef38bb58..904b47b17 100644 --- a/Config.xcconfig +++ b/Config.xcconfig @@ -9,4 +9,4 @@ APP_ICON = OiAPS_Icon APP_URL_SCHEME = freeaps-x #include? "ConfigOverride.xcconfig" -//#include? "../../ConfigOverride.xcconfig" +#include? "../../ConfigOverride.xcconfig" From a468756bb4454f028293a0ca20a741f503a2795e Mon Sep 17 00:00:00 2001 From: bjornoleh <63544115+bjornoleh@users.noreply.github.com> Date: Thu, 28 Mar 2024 18:54:52 +0100 Subject: [PATCH 2/2] Config.xcconfig: reverse the order of config override files Makes the config override file in the project root take precedence if there are override files in both root and two directories up. --- Config.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config.xcconfig b/Config.xcconfig index 904b47b17..266012d65 100644 --- a/Config.xcconfig +++ b/Config.xcconfig @@ -8,5 +8,5 @@ APP_GROUP_ID = group.com.$(DEVELOPMENT_TEAM).loopkit.LoopGroup APP_ICON = OiAPS_Icon APP_URL_SCHEME = freeaps-x -#include? "ConfigOverride.xcconfig" #include? "../../ConfigOverride.xcconfig" +#include? "ConfigOverride.xcconfig"