A game like asteroids written in C++ All Music and Code Written by me
Releases have been made for the following platforms:
- Windows (x86_64)
- Linux (x86_64)
- MacOS (arm64)
-
All Platforms:
- Git
- On Linux, your package manager will have it (
apt install gitorpacman -S git) - On Windows and MacOS, download from git-scm.com
- On Linux, your package manager will have it (
- CMake
- On Linux, your package manager will have it (
apt install cmakeorpacman -S cmake) - On Windows and MacOS, download from cmake.org
- On Linux, your package manager will have it (
- Git
-
Linux
- Make and g++
- Your package manager will have it (
apt install buildessentialorpacman -S base-devel)
- Your package manager will have it (
- Make and g++
-
Windows
- Visual Studio C++ Command Line Tools
- Download from visualstudio.microsoft.com
- Visual Studio C++ Command Line Tools
-
MacOS
- XCode Command Line Tools
- Install XCode
- Run
xcode-select --install
- XCode Command Line Tools
-
If it doesn't build, check the workflow files in
.github/workflowsto see what you are missing
- Linux, usually [Ctrl+Alt+T] but you probably already know how.
- Windows, use the start menu to search for "Developer Powershell for VS 2022"
- MacOS, in Finder, open the
Applications/Utilitiesfolder and double-click onTerminal
git clone https://github.com/bit-turtle/game-appto download the game codecd game-appto enter the game directorymkdir buildto create the build directorycmake buildto create the build files in the build directorycmake --build build --config Release -j 4to build the game ("4" can be replaced with the number of cores on your computer)- On Windows use the Visual Studio Command Prompt
./bundle.shor.\bundle.batto get all important files in a folder calledbundle- Open
AsteroidalorAsteroidal.exeto play the game!