Skip to content

Install Guide

Lambru Cristian edited this page Nov 12, 2021 · 4 revisions

Linux Install Guide

Install and configure dependecies

  • Install dependecies

      sudo chmod +x setup.sh
      sudo ./setup.sh
    

Build

  • Compile the project

      mkdir Build && cd Build
      cmake -DCMAKE_BUILD_TYPE=Release .. && make && cd ..
    
  • Run the application using a prototype scene

      ./Build/LiteEngine
    

Windows Install Guide

Install and configure dependecies

  • All the necessary dependencies for Windows are already in /3rdparty folder

Build

  • Generate the Visual Studio project using CMake into a new folder /Build/
  • Open the LiteEngine.sln inside /Build/
  • Build only on Release

Clone this wiki locally