rp2040-doom

(โ˜… 929)

Fully-featured Doom port for the Raspberry Pi RP2040 microcontroller

  • .gitignore
  • .gitmodules
  • .lvimrc
  • .travis.sh
  • .travis.yml
  • AUTHORS
  • autogen.sh
  • ChangeLog
  • CMakeLists.txt
  • CODE_OF_CONDUCT.md
  • configure.ac
  • COPYING.md
  • cup.sh
  • doom1.whx
  • HACKING.md
  • m_deathmch.png
  • m_game.png
  • m_host.png
  • m_join.png
  • m_name.png
  • m_network.png
  • m_two.png
  • Makefile.am
  • NEWS.md
  • NOT-BUGS.md
  • PHILOSOPHY.md
  • pico_extras_import.cmake
  • pico_sdk_import.cmake
  • README-chocolate.md
  • README.md
  • README.Music.md
  • README.Strife.md
  • rpm.spec.in
  • TODO.md
  • up.sh

# Installation Guide

1. Get the code
git clone https://github.com/kilograham/rp2040-doom

Downloads the entire project code from GitHub to your computer.

cd rp2040-doom

Moves into the project folder you just downloaded.

2. CMake

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • CMake The tool used to generate build configuration.
  • C/C++ ์ปดํŒŒ์ผ๋Ÿฌ Windows needs Visual Studio (Community edition, free), macOS needs Xcode Command Line Tools, Linux needs the gcc/g++ package.
cmake ..

Analyzes the source code and generates build configuration files (must be run inside the build folder).

cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DPICO_BOARD=vgaboard -DPICO_SDK_PATH=/path/to/pico-sdk -DPICO_EXTRAS_PATH=/path/to/pico-extras ..

Type this command into your terminal and run it.

cmake -DPICO_PLATFORM=host -DPICO_SDK_PATH=/path/to/pico-sdk -DPICO_EXTRAS_PATH=/path/to/pico-extras -DPICO_SDK_PRE_LIST_DIRS=/path/to/pico_host_sdl ..

Type this command into your terminal and run it.

โœ… Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).

Pulled directly from this repo's README.

// repository documentation