Skip to content

Latest commit

 

History

History
51 lines (41 loc) · 750 Bytes

File metadata and controls

51 lines (41 loc) · 750 Bytes

Installation Guide

Requirements:

  • CMake: >= 3.10
  • Make: (Linux/macOS) or Visual Studio (Windows)
  • SFML: 2.6.2

Build Instructions

  1. Clone the repository

    git clone https://github.com/mihaid11/Emberguard.git
  2. Navigate to the project folder

    cd Emberguard
  3. Create a build directory

    mkdir build
    cd build
  4. Configure the project with CMake

    cmake ..
  5. Build the project

    cmake --build .

    Or alternatively

    make
  6. Run the executable

    On Linux/macOS:

    ./Emberguard

    On Windows:

    cd Debug
    Emberguard.exe