-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andy Liu <andy@madmachine.io>
- Loading branch information
Showing
14 changed files
with
146 additions
and
87 deletions.
There are no files selected for viewing
31 changes: 21 additions & 10 deletions
31
Examples/SwiftIOPlayground/13MoreProjects/Fireworks/Package.mmp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
# This is a MadMachine project file in TOML format | ||
# This file holds those parameters that could not be managed by SwiftPM | ||
# Edit this file would change the behavior of the building/downloading procedure | ||
# Those project files in the dependent libraries would be IGNORED | ||
# This file contains parameters that cannot be managed by SwiftPM | ||
# Editing this file will alter the behavior of the build/download process | ||
# Project files within dependent libraries will be IGNORED | ||
|
||
# Specify the board name below | ||
# There are "SwiftIOBoard" and "SwiftIOMicro" now | ||
# Supported boards are listed as follows | ||
# "SwiftIOBoard" | ||
# "SwiftIOMicro" | ||
board = "SwiftIOMicro" | ||
|
||
# Specifiy the target triple below | ||
# There are "thumbv7em-unknown-none-eabi" and "thumbv7em-unknown-none-eabihf" now | ||
# If your code use significant floating-point calculation, | ||
# plz set it to "thumbv7em-unknown-none-eabihf" | ||
triple = "thumbv7em-unknown-none-eabi" | ||
# Specify the target triple below | ||
# Supported architectures are listed as follows | ||
# "thumbv7em-unknown-none-eabi" | ||
# "thumbv7em-unknown-none-eabihf" | ||
# "armv7em-none-none-eabi" | ||
triple = "armv7em-none-none-eabi" | ||
|
||
# Enable or disable hardware floating-point support below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
hard-float = true | ||
|
||
# Enable or disable float register below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
float-abi = false | ||
|
||
# Reserved for future use | ||
version = 1 | ||
version = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 21 additions & 10 deletions
31
Examples/SwiftIOPlayground/13MoreProjects/HilbertCurve/Package.mmp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
# This is a MadMachine project file in TOML format | ||
# This file holds those parameters that could not be managed by SwiftPM | ||
# Edit this file would change the behavior of the building/downloading procedure | ||
# Those project files in the dependent libraries would be IGNORED | ||
# This file contains parameters that cannot be managed by SwiftPM | ||
# Editing this file will alter the behavior of the build/download process | ||
# Project files within dependent libraries will be IGNORED | ||
|
||
# Specify the board name below | ||
# There are "SwiftIOBoard" and "SwiftIOMicro" now | ||
# Supported boards are listed as follows | ||
# "SwiftIOBoard" | ||
# "SwiftIOMicro" | ||
board = "SwiftIOMicro" | ||
|
||
# Specifiy the target triple below | ||
# There are "thumbv7em-unknown-none-eabi" and "thumbv7em-unknown-none-eabihf" now | ||
# If your code use significant floating-point calculation, | ||
# plz set it to "thumbv7em-unknown-none-eabihf" | ||
triple = "thumbv7em-unknown-none-eabi" | ||
# Specify the target triple below | ||
# Supported architectures are listed as follows | ||
# "thumbv7em-unknown-none-eabi" | ||
# "thumbv7em-unknown-none-eabihf" | ||
# "armv7em-none-none-eabi" | ||
triple = "armv7em-none-none-eabi" | ||
|
||
# Enable or disable hardware floating-point support below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
hard-float = true | ||
|
||
# Enable or disable float register below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
float-abi = false | ||
|
||
# Reserved for future use | ||
version = 1 | ||
version = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 21 additions & 10 deletions
31
Examples/SwiftIOPlayground/13MoreProjects/MazeGame/Package.mmp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
# This is a MadMachine project file in TOML format | ||
# This file holds those parameters that could not be managed by SwiftPM | ||
# Edit this file would change the behavior of the building/downloading procedure | ||
# Those project files in the dependent libraries would be IGNORED | ||
# This file contains parameters that cannot be managed by SwiftPM | ||
# Editing this file will alter the behavior of the build/download process | ||
# Project files within dependent libraries will be IGNORED | ||
|
||
# Specify the board name below | ||
# There are "SwiftIOBoard" and "SwiftIOMicro" now | ||
# Supported boards are listed as follows | ||
# "SwiftIOBoard" | ||
# "SwiftIOMicro" | ||
board = "SwiftIOMicro" | ||
|
||
# Specifiy the target triple below | ||
# There are "thumbv7em-unknown-none-eabi" and "thumbv7em-unknown-none-eabihf" now | ||
# If your code use significant floating-point calculation, | ||
# plz set it to "thumbv7em-unknown-none-eabihf" | ||
triple = "thumbv7em-unknown-none-eabi" | ||
# Specify the target triple below | ||
# Supported architectures are listed as follows | ||
# "thumbv7em-unknown-none-eabi" | ||
# "thumbv7em-unknown-none-eabihf" | ||
# "armv7em-none-none-eabi" | ||
triple = "armv7em-none-none-eabi" | ||
|
||
# Enable or disable hardware floating-point support below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
hard-float = true | ||
|
||
# Enable or disable float register below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
float-abi = false | ||
|
||
# Reserved for future use | ||
version = 1 | ||
version = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 21 additions & 10 deletions
31
Examples/SwiftIOPlayground/13MoreProjects/SandSimulation/Package.mmp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
# This is a MadMachine project file in TOML format | ||
# This file holds those parameters that could not be managed by SwiftPM | ||
# Edit this file would change the behavior of the building/downloading procedure | ||
# Those project files in the dependent libraries would be IGNORED | ||
# This file contains parameters that cannot be managed by SwiftPM | ||
# Editing this file will alter the behavior of the build/download process | ||
# Project files within dependent libraries will be IGNORED | ||
|
||
# Specify the board name below | ||
# There are "SwiftIOBoard" and "SwiftIOMicro" now | ||
# Supported boards are listed as follows | ||
# "SwiftIOBoard" | ||
# "SwiftIOMicro" | ||
board = "SwiftIOMicro" | ||
|
||
# Specifiy the target triple below | ||
# There are "thumbv7em-unknown-none-eabi" and "thumbv7em-unknown-none-eabihf" now | ||
# If your code use significant floating-point calculation, | ||
# plz set it to "thumbv7em-unknown-none-eabihf" | ||
triple = "thumbv7em-unknown-none-eabi" | ||
# Specify the target triple below | ||
# Supported architectures are listed as follows | ||
# "thumbv7em-unknown-none-eabi" | ||
# "thumbv7em-unknown-none-eabihf" | ||
# "armv7em-none-none-eabi" | ||
triple = "armv7em-none-none-eabi" | ||
|
||
# Enable or disable hardware floating-point support below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
hard-float = true | ||
|
||
# Enable or disable float register below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
float-abi = false | ||
|
||
# Reserved for future use | ||
version = 1 | ||
version = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 21 additions & 10 deletions
31
Examples/SwiftIOPlayground/13MoreProjects/SpinningCube/Package.mmp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
# This is a MadMachine project file in TOML format | ||
# This file holds those parameters that could not be managed by SwiftPM | ||
# Edit this file would change the behavior of the building/downloading procedure | ||
# Those project files in the dependent libraries would be IGNORED | ||
# This file contains parameters that cannot be managed by SwiftPM | ||
# Editing this file will alter the behavior of the build/download process | ||
# Project files within dependent libraries will be IGNORED | ||
|
||
# Specify the board name below | ||
# There are "SwiftIOBoard" and "SwiftIOMicro" now | ||
# Supported boards are listed as follows | ||
# "SwiftIOBoard" | ||
# "SwiftIOMicro" | ||
board = "SwiftIOMicro" | ||
|
||
# Specifiy the target triple below | ||
# There are "thumbv7em-unknown-none-eabi" and "thumbv7em-unknown-none-eabihf" now | ||
# If your code use significant floating-point calculation, | ||
# plz set it to "thumbv7em-unknown-none-eabihf" | ||
triple = "thumbv7em-unknown-none-eabi" | ||
# Specify the target triple below | ||
# Supported architectures are listed as follows | ||
# "thumbv7em-unknown-none-eabi" | ||
# "thumbv7em-unknown-none-eabihf" | ||
# "armv7em-none-none-eabi" | ||
triple = "armv7em-none-none-eabi" | ||
|
||
# Enable or disable hardware floating-point support below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
hard-float = true | ||
|
||
# Enable or disable float register below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
float-abi = false | ||
|
||
# Reserved for future use | ||
version = 1 | ||
version = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 21 additions & 10 deletions
31
Examples/SwiftIOPlayground/13MoreProjects/WordClock/Package.mmp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
# This is a MadMachine project file in TOML format | ||
# This file holds those parameters that could not be managed by SwiftPM | ||
# Edit this file would change the behavior of the building/downloading procedure | ||
# Those project files in the dependent libraries would be IGNORED | ||
# This file contains parameters that cannot be managed by SwiftPM | ||
# Editing this file will alter the behavior of the build/download process | ||
# Project files within dependent libraries will be IGNORED | ||
|
||
# Specify the board name below | ||
# There are "SwiftIOBoard" and "SwiftIOMicro" now | ||
# Supported boards are listed as follows | ||
# "SwiftIOBoard" | ||
# "SwiftIOMicro" | ||
board = "SwiftIOMicro" | ||
|
||
# Specifiy the target triple below | ||
# There are "thumbv7em-unknown-none-eabi" and "thumbv7em-unknown-none-eabihf" now | ||
# If your code use significant floating-point calculation, | ||
# plz set it to "thumbv7em-unknown-none-eabihf" | ||
triple = "thumbv7em-unknown-none-eabi" | ||
# Specify the target triple below | ||
# Supported architectures are listed as follows | ||
# "thumbv7em-unknown-none-eabi" | ||
# "thumbv7em-unknown-none-eabihf" | ||
# "armv7em-none-none-eabi" | ||
triple = "armv7em-none-none-eabi" | ||
|
||
# Enable or disable hardware floating-point support below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
hard-float = true | ||
|
||
# Enable or disable float register below | ||
# If your code involves significant floating-point calculations, please set it to 'true' | ||
float-abi = false | ||
|
||
# Reserved for future use | ||
version = 1 | ||
version = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters