Skip to content

Commit bd017af

Browse files
committed
[CHORE] Pods관련 xcconfig 추가
1 parent 20b2cbe commit bd017af

3 files changed

Lines changed: 44 additions & 4 deletions

File tree

‎GAMSS.xcodeproj/project.pbxproj‎

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,8 @@
676676
};
677677
708F57FF3003C653008DF433 /* Debug */ = {
678678
isa = XCBuildConfiguration;
679-
baseConfigurationReference = EAD22D6FD3BB2E8E689A52BE /* Pods-GAMSS.debug.xcconfig */;
679+
baseConfigurationReferenceAnchor = 708F57F53003C651008DF433 /* GAMSS */;
680+
baseConfigurationReferenceRelativePath = Config/Debug.xcconfig;
680681
buildSettings = {
681682
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
682683
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
@@ -717,7 +718,8 @@
717718
};
718719
708F58003003C653008DF433 /* Release */ = {
719720
isa = XCBuildConfiguration;
720-
baseConfigurationReference = BECB25622D5F9ADA8FA5E5B6 /* Pods-GAMSS.release.xcconfig */;
721+
baseConfigurationReferenceAnchor = 708F57F53003C651008DF433 /* GAMSS */;
722+
baseConfigurationReferenceRelativePath = Config/Release.xcconfig;
721723
buildSettings = {
722724
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
723725
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
@@ -758,7 +760,8 @@
758760
};
759761
8A305D6E137D5FF38853FE59 /* Debug */ = {
760762
isa = XCBuildConfiguration;
761-
baseConfigurationReference = 1A8F630A15A80F5FAB52F2C1 /* Pods-GAMSSTests.debug.xcconfig */;
763+
baseConfigurationReferenceAnchor = 708F57F53003C651008DF433 /* GAMSS */;
764+
baseConfigurationReferenceRelativePath = Config/Debug.xcconfig;
762765
buildSettings = {
763766
BUNDLE_LOADER = "$(TEST_HOST)";
764767
CLANG_ENABLE_OBJC_WEAK = NO;
@@ -774,7 +777,8 @@
774777
};
775778
AE0A9E514EEAD6687005E404 /* Release */ = {
776779
isa = XCBuildConfiguration;
777-
baseConfigurationReference = E7BE3E28AC7871B572DD4B7E /* Pods-GAMSSTests.release.xcconfig */;
780+
baseConfigurationReferenceAnchor = 708F57F53003C651008DF433 /* GAMSS */;
781+
baseConfigurationReferenceRelativePath = Config/Release.xcconfig;
778782
buildSettings = {
779783
BUNDLE_LOADER = "$(TEST_HOST)";
780784
CLANG_ENABLE_OBJC_WEAK = NO;

‎GAMSS/Config/Debug.xcconfig‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// Debug.xcconfig
3+
// GAMSS
4+
//
5+
// Created by 이건준 on 8/4/26.
6+
//
7+
8+
// 해당 파일에서 정의되는 값들을 다른 Swift 파일에서 사용하기 위해 Info.plist 및 Environment.swift 파일 수정 필요
9+
// 해당 파일에서 정의되는 값들은 앱 내부 Swift 프로퍼티와 구분하기 위해 대문자 snake-case 사용
10+
// e.g. EXAMPLE_VALUE
11+
12+
#include "../../Pods/Target Support Files/Pods-GAMSS/Pods-GAMSS.debug.xcconfig"
13+
14+
// App project settings
15+
APP_NAME =
16+
17+
// Network Defines
18+
BASE_URL =

‎GAMSS/Config/Release.xcconfig‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// Release.xcconfig
3+
// GAMSS
4+
//
5+
// Created by 이건준 on 8/4/26.
6+
//
7+
8+
// 해당 파일에서 정의되는 값들을 다른 Swift 파일에서 사용하기 위해 Info.plist 및 Environment.swift 파일 수정 필요
9+
// 해당 파일에서 정의되는 값들은 앱 내부 Swift 프로퍼티와 구분하기 위해 대문자 snake-case 사용
10+
// e.g. EXAMPLE_VALUE
11+
12+
#include "../../Pods/Target Support Files/Pods-GAMSS/Pods-GAMSS.release.xcconfig"
13+
14+
// App project settings
15+
APP_NAME =
16+
17+
// Network Defines
18+
BASE_URL =

0 commit comments

Comments
 (0)