Skip to content

qualeus/qualeus

Repository files navigation

Qualeus project banner

Version Language Roadmap License Build

Table of Contents
  1. About The Project
  2. Getting Started
    1. Prerequisites
    2. Installation
  3. Contributing
  4. License
  5. Authors

1. About The Project

2. Getting Started

2.1. Prerequisites

The project is developed according to c++17 standards.

To build the engine, you will need the CMake build tool v3.8+

You will also need a compiler for c++17, make sure yours is compatible (gcc v8+, see support)

The program has been tested with the following compilers:

2.2. Installation

  1. Download the project source or clone it with git: git clone https://github.com/qualeus/engine.git
  2. Create a build directory: cd engine && mkdir build
  3. Build the project with Cmake: cd build && cmake -G "YOUR_COMPILER" -DBUILD_TESTS=ON ../..
  4. Build the targets and run tests: cmake --build . && make CTEST_OUTPUT_ON_FAILURE=TRUE test

(back to top)

3. Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

4. License

Distributed under the MIT License. See LICENSE.txt for more information.

5. Authors

  • LHOUTELLIER Maël - Initial work - mlhoutel

(back to top)