How to Install Librengine on Windows 11
Librengine is an open-source game engine that is designed to be easy to use and easy to extend. In this tutorial, we will explain how to install Librengine on your Windows 11 computer.
Requirements
Before we start the installation process, you need to ensure that your computer meets the following requirements:
- Windows 11 operating system
- Git
- CMake
- Visual Studio 2019 (comunity or greater)
Steps to Install
- Open the Git Bash app.
- Navigate to the directory where you want to install Librengine by typing
cd <directory>and pressing Enter. Replace<directory>with your desired directory path. - Clone the Librengine repository by typing
git clone https://github.com/liameno/librengine.gitand pressing Enter. - Navigate to the newly cloned directory by typing
cd librengineand pressing Enter. - Create a new directory named
buildby typingmkdir buildand pressing Enter. - Navigate to the newly created
builddirectory by typingcd buildand pressing Enter. - Run CMake by typing
cmake -G "Visual Studio 16 2019" ..and pressing Enter. This will generate a Visual Studio project in thebuilddirectory. - Open the
Librengine.slnfile in Visual Studio. - Select the
ConfigurationandPlatformunder which you want to build Librengine. - Build the project by clicking on the
Buildmenu item and selectingBuild Solution. - Once the build process is complete, you can find the
librengine.dllfile in thebuilddirectory.
Congratulations! You have successfully installed Librengine on your Windows 11 computer. You can now use this game engine to create your own games.