Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

cieslarmichal/chimarrao-platformer

Repository files navigation

chimarrao

Requirements:

  • compiler that supports C++ 20
  • git
  • cmake

Setup on Windows 10 with MSVC

  1. Download SFML 2.5.1 for MSVC and unzip in directory C:\libraries\sfml

  2. Download Boost 1.71 and unzip in directory C:\libraries\boost

  3. Add path to SFML binaries directory to PATH and restart computer

  4. Get repository:

    git clone https://github.com/walter-strazak/chimarrao-platformer.git
    
  5. Inside chimarrao directory initialize third-party libraries:

    git submodule update --init --recursive
    
  6. To run tests use CMAKE flag:

    -Dgtest_force_shared_crt=ON
    

Setup on Ubuntu 20.04

  1. Install SFML:

    sudo apt install libsfml-dev
    
  2. Install boost:

    sudo apt install libboost-all-dev   
    
  3. Get repository:

    git clone https://github.com/walter-strazak/chimarrao-platformer.git
    
  4. Inside chimarrao directory initialize third-party libraries:

    git submodule update --init --recursive