/milipede

Atari Milipede C Remake

Primary LanguageC

Build Instructions

Windows

  1. Clone this repository
    $ git clone https://github.com/gpl27/milipede.git

  2. Download and install MSYS2

  3. Download and install CMake

  4. Use CMake to generate Makefiles and compile the code

  • Open CMake
  • Specify the path of the "src" folder in the option "Where is the source code:" 4.1
  • Create a folder named "build" and specify the path in the option "Where to build the binaries:" 4.2
  • Select the option "Generate"
  • Specify "MinGW Makefiles" for generator and select the default option 4.3
  • Click Finish
  1. Set up the environment using Visual Studio Code
  • Install the CMake Tools extension
  • Search and click the button on the VS Code status bar where is written "No Kit Selected"
  • Select the GCC Kit
  1. Build the project in Visual Studio Code
  • Click on the "Build" button on the VS Code status bar

Linux

$ cd milipede

$ mkdir build

$ cd build

$ cmake ../src

$ cmake --build .