https://github.com/hoverguys/hovercraft-old
Hovercraft game for the Gamecube and Wii (OLD, see hoverguys/rehover)
https://github.com/hoverguys/hovercraft-old
Last synced: 1 day ago
JSON representation
Hovercraft game for the Gamecube and Wii (OLD, see hoverguys/rehover)
- Host: GitHub
- URL: https://github.com/hoverguys/hovercraft-old
- Owner: hoverguys
- Created: 2015-08-02T16:36:15.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-10-26T21:44:21.000Z (over 8 years ago)
- Last Synced: 2026-04-22T09:46:02.614Z (2 months ago)
- Language: C
- Homepage:
- Size: 3.47 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hovercraft #
## Building ##
### Installing Dependencies ###
Install DevkitPPC: Instructions [here](http://devkitpro.org/wiki/Getting_Started/devkitPPC).
#### Linux ####
For the purposes of this guide, we will assume you are using a debian-based distro with `apt-get`.
Install Boost Program Options: `sudo apt-get install libboost-program-options-dev`
Install ASSIMP: `sudo apt-get install libassimp-dev`
#### OS X ####
The easiest way to install dependencies with OS X is using [Homebrew](http://brew.sh). We will assume this is what you are using.
Install Boost: `brew install boost`
Install ASSIMP: `brew install assimp`
### Compiling on POSIX systems (Linux, OS X) ###
From the project's root directory:
```
cd tools/obj2bin_src
make
cd ../..
make
```