├── .gitignore ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── ExyLib │ └── BuildGraph.swift ├── ExyWorkspace │ ├── Project.swift │ ├── Scheme.swift │ ├── Target.swift │ └── Workspace.swift └── exy │ └── main.swift └── Tests ├── ExyTests └── BuildGraphTests.swift └── ExyWorkspaceTests └── SchemeTests.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /.swiftpm 4 | /Packages 5 | /*.xcodeproj 6 | -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ExyLib/BuildGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Sources/ExyLib/BuildGraph.swift -------------------------------------------------------------------------------- /Sources/ExyWorkspace/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Sources/ExyWorkspace/Project.swift -------------------------------------------------------------------------------- /Sources/ExyWorkspace/Scheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Sources/ExyWorkspace/Scheme.swift -------------------------------------------------------------------------------- /Sources/ExyWorkspace/Target.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Sources/ExyWorkspace/Target.swift -------------------------------------------------------------------------------- /Sources/ExyWorkspace/Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Sources/ExyWorkspace/Workspace.swift -------------------------------------------------------------------------------- /Sources/exy/main.swift: -------------------------------------------------------------------------------- 1 | import ExyLib 2 | 3 | print("exy") 4 | -------------------------------------------------------------------------------- /Tests/ExyTests/BuildGraphTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Tests/ExyTests/BuildGraphTests.swift -------------------------------------------------------------------------------- /Tests/ExyWorkspaceTests/SchemeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdiep/exy/HEAD/Tests/ExyWorkspaceTests/SchemeTests.swift --------------------------------------------------------------------------------