From f2a017f99580072b56b24eb9c27fd583407966cb Mon Sep 17 00:00:00 2001 From: chanhihi Date: Tue, 15 Aug 2023 17:08:29 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat(tuist):=20Project=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Project.swift | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Project.swift diff --git a/Project.swift b/Project.swift new file mode 100644 index 0000000..941875f --- /dev/null +++ b/Project.swift @@ -0,0 +1,33 @@ +import ProjectDescription + +// MARK: Constants +let projectName = "Box42" +let organizationName = "Box42" +let bundleID = "com.box42" +let targetVersion = "10.15" + +// MARK: Struct +let project = Project( + name: projectName, + organizationName: organizationName, + packages: [], + settings: nil, + targets: [ + Target(name: projectName, + platform: .macOS, + product: .app, // unitTests, .appExtension, .framework, dynamicLibrary, staticFramework + bundleId: bundleID, + deploymentTarget: .macOS(targetVersion: targetVersion), + infoPlist: .file(path: "\(projectName)/Resources/Info.plist"), + sources: ["\(projectName)/**"], + resources: ["\(projectName)/Resources/Assets.xcassets"], + entitlements: "\(projectName)/Resources/Box42.entitlements", + dependencies: [] // tuist generate할 경우 pod install이 자동으로 실행 + ) + ], + schemes: [ + ], + fileHeaderTemplate: nil, + additionalFiles: [], + resourceSynthesizers: [] +) From ab40f314db01e807ceb1215e954e4079c3343d6a Mon Sep 17 00:00:00 2001 From: chanhihi Date: Tue, 15 Aug 2023 17:19:32 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix(tuist):=20Main.storyboard=EB=A5=BC=20?= =?UTF-8?q?=EB=A6=AC=EC=86=8C=EC=8A=A4=EC=97=90=20=EC=B6=94=EA=B0=80?= =?UTF-8?q?=ED=95=98=EC=98=80=EC=8A=B5=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Project.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.swift b/Project.swift index 941875f..7ab74f9 100644 --- a/Project.swift +++ b/Project.swift @@ -20,13 +20,13 @@ let project = Project( deploymentTarget: .macOS(targetVersion: targetVersion), infoPlist: .file(path: "\(projectName)/Resources/Info.plist"), sources: ["\(projectName)/**"], - resources: ["\(projectName)/Resources/Assets.xcassets"], + resources: ["\(projectName)/Resources/Assets.xcassets", + "\(projectName)/Resources/Main.storyboard",], entitlements: "\(projectName)/Resources/Box42.entitlements", dependencies: [] // tuist generate할 경우 pod install이 자동으로 실행 ) ], - schemes: [ - ], + schemes: [], fileHeaderTemplate: nil, additionalFiles: [], resourceSynthesizers: []