https://github.com/blackhawk-ta/towerdefense
A simple tower defense game for the 32Blit retro console
https://github.com/blackhawk-ta/towerdefense
32blit game pico picosystem rp2040
Last synced: 16 days ago
JSON representation
A simple tower defense game for the 32Blit retro console
- Host: GitHub
- URL: https://github.com/blackhawk-ta/towerdefense
- Owner: Blackhawk-TA
- License: mit
- Created: 2021-03-28T19:27:55.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-01-01T15:18:04.000Z (over 4 years ago)
- Last Synced: 2025-01-03T04:33:15.769Z (over 1 year ago)
- Topics: 32blit, game, pico, picosystem, rp2040
- Language: C++
- Homepage: https://blackhawk312.itch.io/towerdefense
- Size: 377 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Tower Defense
[](https://github.com/Blackhawk-TA/TowerDefense/blob/master/LICENSE.md)

[](https://github.com/Blackhawk-TA/TowerDefense/releases)
A simple tower defense game for the 32Blit and PicoSystem retro consoles
## Build
To be able to build this project the [32blit-sdk](https://github.com/32blit/32blit-sdk) has to be configured.
Linux:
```
mkdir build
cd build
cmake ..
make
```
32Blit:
```
mkdir build.stm32
cd build.stm32
cmake .. -DCMAKE_TOOLCHAIN_FILE="../32blit-sdk/32blit.toolchain"
make TowerDefense
```
PicoSystem:
```
mkdir build.pico
cd build.pico
cmake .. -DCMAKE_TOOLCHAIN_FILE=../../32blit-sdk/pico.toolchain -DPICO_BOARD=pimoroni_picosystem
make
```