From ed6f1394161f403187f0ef1b6a7ca5ee2541020b Mon Sep 17 00:00:00 2001 From: Andy Liu Date: Tue, 17 Dec 2024 18:39:59 +0700 Subject: [PATCH] Use binary MadGraphics Signed-off-by: Andy Liu --- .../SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift | 4 ++-- .../SwiftIOPlayground/13MoreProjects/Fireworks/Package.swift | 4 ++-- .../13MoreProjects/HilbertCurve/Package.swift | 4 ++-- .../SwiftIOPlayground/13MoreProjects/MazeGame/Package.swift | 4 ++-- .../13MoreProjects/SandSimulation/Package.swift | 4 ++-- .../13MoreProjects/SpinningCube/Package.swift | 4 ++-- .../SwiftIOPlayground/13MoreProjects/WordClock/Package.swift | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift index 9507626..39d4f36 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift @@ -9,7 +9,7 @@ let package = Package( .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadGraphics.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/CFreeType.git", from: "2.13.2"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -22,7 +22,7 @@ let package = Package( .product(name: "PCF8563", package: "MadDrivers"), .product(name: "SHT3x", package: "MadDrivers"), .product(name: "ST7789", package: "MadDrivers"), - "MadGraphics", + "CFreeType", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/Fireworks/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/Fireworks/Package.swift index e9d8a3d..ffd2fa8 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/Fireworks/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/Fireworks/Package.swift @@ -10,7 +10,7 @@ let package = Package( .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadGraphics.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/CFreeType.git", from: "2.13.2"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. @@ -22,7 +22,7 @@ let package = Package( "MadBoards", // Use specific library name rather than "MadDrivers" would speed up the build procedure. .product(name: "ST7789", package: "MadDrivers"), - "MadGraphics" + "CFreeType", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/HilbertCurve/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/HilbertCurve/Package.swift index 11ab28a..c5f8289 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/HilbertCurve/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/HilbertCurve/Package.swift @@ -10,7 +10,7 @@ let package = Package( .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadGraphics.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/CFreeType.git", from: "2.13.2"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. @@ -22,7 +22,7 @@ let package = Package( "MadBoards", // Use specific library name rather than "MadDrivers" would speed up the build procedure. .product(name: "ST7789", package: "MadDrivers"), - "MadGraphics", + "CFreeType", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/MazeGame/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/MazeGame/Package.swift index 9d6ce04..2d81489 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/MazeGame/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/MazeGame/Package.swift @@ -10,7 +10,7 @@ let package = Package( .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadGraphics.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/CFreeType.git", from: "2.13.2"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. @@ -23,7 +23,7 @@ let package = Package( // Use specific library name rather than "MadDrivers" would speed up the build procedure. .product(name: "ST7789", package: "MadDrivers"), .product(name: "LIS3DH", package: "MadDrivers"), - "MadGraphics", + "CFreeType", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/SandSimulation/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/SandSimulation/Package.swift index 7862df0..9272af3 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/SandSimulation/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/SandSimulation/Package.swift @@ -10,7 +10,7 @@ let package = Package( .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadGraphics.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/CFreeType.git", from: "2.13.2"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. @@ -23,7 +23,7 @@ let package = Package( // Use specific library name rather than "MadDrivers" would speed up the build procedure. .product(name: "ST7789", package: "MadDrivers"), .product(name: "LIS3DH", package: "MadDrivers"), - "MadGraphics", + "CFreeType", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/SpinningCube/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/SpinningCube/Package.swift index 2f2544a..0f1f972 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/SpinningCube/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/SpinningCube/Package.swift @@ -10,7 +10,7 @@ let package = Package( .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadGraphics.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/CFreeType.git", from: "2.13.2"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. @@ -22,7 +22,7 @@ let package = Package( "MadBoards", // Use specific library name rather than "MadDrivers" would speed up the build procedure. .product(name: "ST7789", package: "MadDrivers"), - "MadGraphics", + "CFreeType", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/WordClock/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/WordClock/Package.swift index 7e921af..ab18f6e 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/WordClock/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/WordClock/Package.swift @@ -10,7 +10,7 @@ let package = Package( .package(url: "https://github.com/madmachineio/SwiftIO.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadBoards.git", branch: "develop"), .package(url: "https://github.com/madmachineio/MadDrivers.git", branch: "develop"), - .package(url: "https://github.com/madmachineio/MadGraphics.git", branch: "develop"), + .package(url: "https://github.com/madmachineio/CFreeType.git", from: "2.13.2"), ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. @@ -23,7 +23,7 @@ let package = Package( // Use specific library name rather than "MadDrivers" would speed up the build procedure. .product(name: "ST7789", package: "MadDrivers"), .product(name: "PCF8563", package: "MadDrivers"), - "MadGraphics", + "CFreeType", ]), ] )