Skip to content
KevinAlexV edited this page Oct 19, 2022 · 3 revisions

Welcome to the BlueDemise Developers wiki!

This Wiki will contain everything you need to know in order to use this engine and edit it according to our guidelines.

Note this is primarily for our Engine developers.

How to build

  1. You'll need to download the latest version of CMake https://cmake.org/download/ (Make sure you add cmake to your PATH)
  2. Open console and navigate to the root directory of the project.
  3. Run cmake . This will configure the CMake files. For more options https://cmake.org/cmake/help/latest/manual/cmake.1.html#generate-a-project-buildsystem
  4. Run cmake --build . to build the project

The project should now be built according to the configure used in step 3.

Clone this wiki locally