Skip to content

Commit

Permalink
infra: util 관련 모듈 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
chansooo committed Jun 9, 2024
1 parent 58c826f commit 971ba0a
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Projects/Core/PPACUtil/Project.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//
// Project.swift
// PPACUtil
//
// Created by kimchansoo on 2024/06/09
//

import ProjectDescription
import ProjectDescriptionHelpers

let project = Project(
name: "PPACUtil",
targets: [
.configure(
name: "PPACUtil",
product: .framework,
infoPlist: .default,
sources: "Sources/**",
resources: "Resources/**",
dependencies: [

]
)
]
)

1 change: 1 addition & 0 deletions Projects/Core/PPACUtil/Resources/dummy.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
더미임미다
1 change: 1 addition & 0 deletions Projects/Core/PPACUtil/Sources/dummy.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
더미임미다
1 change: 1 addition & 0 deletions Tuist/ProjectDescriptionHelpers/TargetDependency+.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ extension TargetDependency {
public struct Core {
public static let DesignSystem = project(moduleName: "DesignSystem")
public static let PPACModels = project(moduleName: "PPACModels")
public static let PPACUtil = project(moduleName: "PPACUtil")
}

public struct ThirdParty {
Expand Down

0 comments on commit 971ba0a

Please sign in to comment.