From e5cd28a3ded3298f8b6c4b128639f02d25be164c Mon Sep 17 00:00:00 2001 From: Andy Liu Date: Mon, 9 Dec 2024 16:16:07 +0700 Subject: [PATCH] Add default demo Signed-off-by: Andy Liu --- .../SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift | 2 ++ .../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(+), 12 deletions(-) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift index 597b846..9507626 100644 --- a/Examples/SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift +++ b/Examples/SwiftIOPlayground/13MoreProjects/DefaultApp/Package.swift @@ -9,6 +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"), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -21,6 +22,7 @@ let package = Package( .product(name: "PCF8563", package: "MadDrivers"), .product(name: "SHT3x", package: "MadDrivers"), .product(name: "ST7789", package: "MadDrivers"), + "MadGraphics", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/Fireworks/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/Fireworks/Package.swift index 8d25e0c..d6b6660 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/CFreeType", from: "2.13.0"), + .package(url: "https://github.com/madmachineio/MadGraphics.git", from: "develop"), ], 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"), - "CFreeType" + "MadGraphics" ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/HilbertCurve/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/HilbertCurve/Package.swift index 6d7f734..64f1f7f 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/CFreeType", from: "2.13.0"), + .package(url: "https://github.com/madmachineio/MadGraphics.git", from: "develop"), ], 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"), - "CFreeType", + "MadGraphics", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/MazeGame/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/MazeGame/Package.swift index acf4109..2cb9c16 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/CFreeType", from: "2.13.0"), + .package(url: "https://github.com/madmachineio/MadGraphics.git", from: "develop"), ], 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"), - "CFreeType", + "MadGraphics", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/SandSimulation/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/SandSimulation/Package.swift index 619d9c7..0238b87 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/CFreeType", from: "2.13.0"), + .package(url: "https://github.com/madmachineio/MadGraphics.git", from: "develop"), ], 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"), - "CFreeType", + "MadGraphics", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/SpinningCube/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/SpinningCube/Package.swift index 4be7625..a0bd926 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/CFreeType", from: "2.13.0"), + .package(url: "https://github.com/madmachineio/MadGraphics.git", from: "develop"), ], 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"), - "CFreeType", + "MadGraphics", ]), ] ) diff --git a/Examples/SwiftIOPlayground/13MoreProjects/WordClock/Package.swift b/Examples/SwiftIOPlayground/13MoreProjects/WordClock/Package.swift index f7d8e42..82c2a78 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/CFreeType", from: "2.13.0"), + .package(url: "https://github.com/madmachineio/MadGraphics.git", from: "develop"), ], 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"), - "CFreeType", + "MadGraphics", ]), ] )