I am adopting to the Swift Package Manager in my project, which consists of various targets having lots of Swift files, some of the files are commons across the targets.
My project structure is :
A Target -
I don't want to change the project structure for Swift PM as my project contains lots of file.
Is there any way to include the target specific files?
So that the newly added files add automatically into the sources which will reduces the developer effort of putting the newly added file path into sources.
My project structure is :
A Target -
file1.swift
file2.swift
file3.swift (Common file)
file3.swift (Common file)
file4.swift
file5.swift
file3.swift (Common file)
file5.swift (Common file)
file6.swift
file7.swift
I don't want to change the project structure for Swift PM as my project contains lots of file.
Is there any way to include the target specific files?
So that the newly added files add automatically into the sources which will reduces the developer effort of putting the newly added file path into sources.